<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The CallFire Grill &#187; General</title>
	<atom:link href="http://www.callfire.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.callfire.com/blog</link>
	<description>Get the most out of CallFire</description>
	<lastBuildDate>Tue, 07 Feb 2012 16:56:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Developers Corner: CallFire XML Reference Guide</title>
		<link>http://www.callfire.com/blog/2012/02/06/developers-corner-callfire-xml-reference-guide/</link>
		<comments>http://www.callfire.com/blog/2012/02/06/developers-corner-callfire-xml-reference-guide/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 00:34:59 +0000</pubDate>
		<dc:creator>Daniel_Tawfik</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3821</guid>
		<description><![CDATA[CallFire&#8217;s IVR platform allows you to quickly build a phone tree as simple or advanced as you want. With our easy-to-use IVR designer just about anyone can use our drag-and-drop interface to build anything from an automated outbound survey, to an auto attendant that will route calls within your office. Developers also can use CallFire [...]]]></description>
			<content:encoded><![CDATA[<p>CallFire&#8217;s IVR platform allows you to quickly build a <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">phone tree</a> as simple or advanced as you want. With our easy-to-use <a href="http://www.callfire.com/dialer/cm/info/ivr_designer.html">IVR designer</a> just about anyone can use our drag-and-drop interface to build anything from an automated outbound survey, to an <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">auto attendant</a> that will route calls within your office. Developers also can use <a href="http://www.callfire.com/dev/index.php/CallFire_XML_Documentation">CallFire XML</a> to build rich phone applications.<img class="alignnone" style="border-style: initial; border-color: initial; padding: 20px; float: right;" title="Hosted IVR" src="http://www.nicherons.com/images/ivrimg.jpg" alt="Hosted IVR" width="277" height="277" /></p>
<p>As a guide, CallFire&#8217;s senior IVR developer, Dr. Bill Hughes, has assembled some helpful hints to aid you in your IVR fun. For more IVR resources, you can also visit our <a href="http://www.callfire.com//media/tutorial/ivr/">IVR Designer interactive tutorial</a>, view our <a href="http://www.youtube.com/user/CallFireTelephony#p/c/96C3931401717140/11/_Kk7-Smazqs">weekly IVR webinar</a>.</p>
<h1>Using &#8216;.Split()&#8217;, &#8216;.Join()&#8217;, and &#8216;.Substring()&#8217; to Manipulate Strings</h1>
<p>Many times the IVR will require us to get a string and either break it into usable subparts, or sometimes, insert other characters, including spaces, into the string.</p>
<p>The tools we will use for this are three Java functions, &#8216;.split()&#8217;, &#8216;.join()&#8217;, and &#8216;.substring()&#8217;.</p>
<p>&#8216;.split()&#8217; breaks apart the string at the spot described in the argument. For example, &#8216;.split(&#8220;&#8221;)&#8217; says to break apart the string between every element; &#8216;.split(&#8220;|&#8221;)&#8217; says to break it apart every time it reaches the &#8220;pipe&#8221; character ( | ); &#8216;.split(&#8220;,&#8221;)&#8217; says to break it apart every time it reaches a comma.</p>
<p>&#8216;.join()&#8217; puts the string back together with whatever character is indicated by the argument inserted between the previously split elements. For example, &#8216;.join(&#8220;|&#8221;)&#8217; puts the string back together with the &#8220;pipe&#8221; as a delimiter;<br />
&#8216;.join(&#8221; &#8220;)&#8217; puts the string back with a space between the elements. This is used to &#8220;explode&#8221; a number for correct text-to-speech playback (see below).</p>
<p>&#8216;.substring()&#8217; grabs a particular part of the string. The argument should say which place in the string to start with, and how many places to grab. Keep in mind that when counting places in strings or arrays, you always start with &#8217;0&#8242; (zero). So,<br />
&#8216;.substring(0,3)&#8217; would begin with the first element of a string, and grab the first three elements. An example would be the area code from a ten-digit phone number. See below for the real-world examples.</p>
<p>The last piece of coding associated with this is the array place reference. You can grab a particular part of a string array by referencing its place in the array in brackets following the split argument. For example, &#8216;.split(&#8220;,&#8221;)[1]&#8216; says to split the array at the comma delimiter and take the second item in the array (since the count starts with &#8220;0&#8243;, &#8220;1&#8243; is the second place).</p>
<p>Here are some real-world examples:</p>
<p>To &#8220;explode&#8221; a number for correct TTS playback, we would need to split each element (number) in the string and insert a space between them. Assuming our &#8220;number&#8221; is the variable &#8216;acctNum&#8217;, our tag would look like this:</p>
<pre>&lt;setvar name="setvar_explNum" varname="explAcctNum"&gt;${acctNum}.split("").join(" ");&lt;/setvar&gt;</pre>
<p>(The semicolon &#8216;;&#8217; is used to end a Java command.)</p>
<p>Suppose we sent an Account ID using a Get Tag, and got back a variable (&#8216;myResult&#8217;) that contained three elements &#8212; the user name, account balance, and due date &#8212; separated by a &#8216;pipe&#8217; ( | ) delimiter. We could take the results of the Get Tag (&#8216;myResult&#8217;) and split it into the three elements at the pipe delimiter, and place each element into its own variable:</p>
<pre>&lt;setvar name="setvar_user" varname="userName"&gt;${myResult}.split("|")[0];&lt;/setvar&gt;
&lt;setvar name="setvar_balance" varname="acctBal"&gt;${myResult}.split("|")[1];&lt;/setvar&gt;
&lt;setvar name="setvar_dueDate" varname="dueDate"&gt;${myResult}.split("|")[2];&lt;/setvar&gt;</pre>
<p>To grab the area code from the caller ID, do the following:</p>
<pre>&lt;setvar name="setvar_areaCode" varname="areaCode"&gt;${call.callerid}.substring(0,3);&lt;/setvar&gt;</pre>
<pre><a name="Turning_.22Logging.22_On_and_Off"></a></pre>
<h1>Turning &#8220;Logging&#8221; On and Off</h1>
<p>Occasionally the IVR collects sensitive data that must be protected. Examples might include Credit Card Data &#8212; Card Numbers, Expiration Dates, CVN Codes &#8212; or medical data. Both PCI compliance and HI.<br />
<img class="alignnone" style="border-style: initial; border-color: initial; padding: 10px; float: left;" title="Hosted IVR" src="http://www.artfulcare.com/img/telephone-tree.gif" alt="" width="312" height="211" /></p>
<p>PAA require that sensitive information NOT be stored if not necessary. In order to comply, you can now turn off logging for the IVR responses.</p>
<p>Logging is turned on or off as an attribute at the &#8220;Dialplan&#8221; level, as follows:</p>
<pre>&lt;dialplan name="myDialplan" loggingEnabled="false"&gt;</pre>
<p>The default value for &#8220;loggingEnabled&#8221; is &#8220;true&#8221; &#8212; change this to &#8220;false&#8221; for sensitive IVRs.</p>
<p><a name="Using_Boolean_Operators_in_CallFireXML"></a></p>
<h1 style="text-align: left;">Using Boolean Operators in CallFireXML</h1>
<p>CallFireXML uses Java Scripting at certain points in the IVR &#8212; particularly in Setvar Tags and in If Tag comparison expressions. Here are some of the standard Boolean (Logical) Operators you can use:</p>
<p>The relational operators are for comparisons. Please note that the single equal sign (=) defines the contents of a variable. For example, the statement &#8220;x = 1&#8243; populates the variable x with the number 1. The statement &#8220;x = &#8216;elephant&#8217; &#8221; puts an elephant (or at least the string &#8216;elephant&#8217;) into the variable x. So a single equal sign does not mean &#8220;equals.&#8221; For that we use the double equal sign (==).</p>
<p>So the relations operators are:</p>
<pre>&lt;, &lt;=, &gt;, &gt;=, !=, ==</pre>
<p>These are &#8216;less than&#8217;, &#8216;less than or equal to&#8217;, &#8216;greater than&#8217;, &#8216;greater than or equal to&#8217;, not equal to&#8217;, (more about that one in a moment), and &#8216;equal to&#8217;, respectively. Look again at &#8216;not equal to&#8217; (!=) &#8212; the exclamation point means &#8220;not,&#8221; so technically, &#8216;!&gt;&#8217; would mean &#8220;not greater than&#8217;. The ! is useful in the following multiple-condition scenarios.</p>
<p>Now, what if a particular action is to be taken only if several conditions are true? You can use logic operators to handle multiple conditions. There are three logic operators: &amp;&amp;, || and !.</p>
<p>&#8216;&amp;&amp;&#8217; is logical &#8216;and&#8217; &#8212; &amp;&amp; combines two boolean values and returns a boolean which is true if and only if both of its operands are true. For instance:</p>
<pre>b = 3 &gt; 2 &amp;&amp; 5 &lt; 7; // b is true
b = 2 &gt; 3 &amp;&amp; 5 &lt; 7; // b is now false</pre>
<p>&#8216;||&#8217; is logical &#8216;or&#8217; &#8212; || combines two boolean variables or expressions and returns a result that is true if either one or both of its operands are true. For instance:</p>
<pre>b = 3 &gt; 2 || 5 &lt; 7; // b is true
b = 2 &gt; 3 || 5 &lt; 7; // b is still true
b = 2 &gt; 3 || 5 &gt; 7; // now b is false</pre>
<p>The last logic operator is ! which means &#8216;not&#8217; (see above). It reverses the value of a boolean expression. Thus if b is true !b is false. If b is false !b is true.</p>
<pre>b = !(3 &gt; 2); // b is false
b = !(2 &gt; 3); // b is true</pre>
<p>These operators allow you to test multiple conditions more easily. For example, we can write an If Tag as follows:</p>
<pre>&lt;if expr="${myVariable} == 2 &amp;&amp; ${yourVariable} != 2"&gt;
     &lt;goto&gt;myNextModule&lt;/goto&gt;
&lt;/if&gt;</pre>
<p>A real world example might use the global time stamp to define an &#8220;after business hours&#8221; action:</p>
<pre>&lt;if expr="${global.time.military.hour} &lt; 7 || ${global.time.military.hour} &gt; 18"&gt;
     &lt;goto&gt;menu_answeringMachineModule&lt;/goto&gt;
&lt;/if&gt;</pre>
<p>In the above example &#8216;&lt; 7&#8242; means &#8216;less than (earlier than) 7:00 AM&#8217; and &#8216;&gt; 18&#8242; means &#8216;greater than (later than) 6:00 PM.&#8217;</p>
<p><a name="Creating_Questions_and_Responses:_Using_the_Press_Menu_Tag"></a></p>
<h1>Creating Questions and Responses: Using the Press Menu Tag</h1>
<p>At the heart of an IVR system is the question and response. Basically, the system requests responses from the customer and the customer presses keys in response. This may be in the form of an actual question and instructions for response &#8212; &#8220;Would you vote for Homer Simpson? Press 1 for Yes or 2 for No.&#8221; &#8212; and sometimes it&#8217;s just a simple declaration &#8212; &#8220;Please enter your 5-digit account number, followed by the pound sign.&#8221;</p>
<p>In either case, the question-response clearly consists of a play tag stating the instructions and some keypresses getting the responses. Something needs to tell the IVR System that this particular Play Tag and its Keypress Tags all work together. The Press Menu Tag provides this function &#8212; think of it as an envelope &#8220;containing&#8221; the play tag and keypresses. As a matter of fact, when you drag a Press Menu Tag into the work space, you will see that it automatically creates two dependent tags, a Play Tag and a Keypress Tag (dependent tags are indented from, and hang down from, their &#8216;parent&#8217; tags). The Press Menu Tag knows that it needs at least one each of these tags. The whole thing works as follows:</p>
<pre>&lt;menu name="myMenu" maxDigits="1" timeout="3500"&gt;
   &lt;play name="play_Q1" type="tts" voice="male1"&gt;
      Would you vote for Homer Simpson for President?
      Press 1 for yes or 2 for no.
   &lt;/play&gt;
   &lt;keypress name="keypress_Q1R1" pressed="1"&gt;
      &lt;stash name="stash_Q1R1" varname="Q1R"&gt;1-Yes&lt;/stash&gt;
   &lt;/keypress&gt;
   &lt;keypress name="keypress_Q1R2" pressed="2"&gt;
      &lt;stash name="stash_Q1R2" varname="Q1R"&gt;2-No&lt;/stash&gt;
   &lt;/keypress&gt;
&lt;/menu&gt;

&lt;!-- The menu here defines how many keypresses constitute an answer -- in this case,
      one. Also, how long they have to enter a response, here 3-1/2 seconds --&gt;
&lt;!-- The play tag defines Question 1 (Q1) and describes how to respond. --&gt;
&lt;!-- The first keypress tag gets the digit-2 response for Question 1
      (Q1R2 and pressed="2")
      and stores it in the report as "2-No" under the Variable Name "Q1R" --&gt;
&lt;!-- The second keypress tag gets the digit-1 response for Question 1
      (Q1R1 and pressed="1")
      and stores it in the report as "1-Yes" under the Variable Name "Q1R" --&gt;
&lt;!-- Notice that the variable name is the same for both responses:
      only the value changes --&gt;</pre>
<p>Learn to think of the above as a single unit &#8212; &#8220;the Question and Response.&#8221;</p>
<p><a name="Naming_Variables"></a></p>
<h1>Naming Variables</h1>
<p>When naming variables, try to follow standard programming rules. That way, your variables will be usable within any programming language you need to send them to, whether php, .Net, Java, C++, C#, etc. Variables should begin with a letter, and are case-sensitive. Variables cannot have spaces. And many languages do not accept odd characters &#8212; stick with alphanumeric variable names. Other allowable characters include the underscore ( _ ) or the dot ( . ).</p>
<p>There are two main &#8220;naming conventions&#8221; for multi-word variable names. The first is to use underscores in between the words (in both cases, use abbreviations where possible):</p>
<pre>"my_first_variable" or "user_app_no" (for "user application number").</pre>
<p>The second convention uses run-on words, all lowercase, except capitals for all initial letters except the first:</p>
<pre>"myFirstVariable" or "userAppNo"</pre>
<p>In naming the IVR nodes, We at CallFire recommend following variable name standards, combining the two methods, as follows (again, using abbreviations as possible):</p>
<p>nodetype_usefulName (node name, underscore, useful name as run-on word)</p>
<p>Examples:</p>
<pre>menu_Q1 (menu, question 1)
menu_getUserID
play_verifyUserID</pre>
<p>These tips are suppose to be used as a reference. Please feel free to contact our knowledgable support staff to aid you in creating your future campaigns.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="Developers Corner: CallFire XML Reference Guide" url="http://www.callfire.com/blog/2012/02/06/developers-corner-callfire-xml-reference-guide/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/02/06/developers-corner-callfire-xml-reference-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IVR 101: Auto-Attendants, Survey, Voicemail and More</title>
		<link>http://www.callfire.com/blog/2012/02/06/ivr-101/</link>
		<comments>http://www.callfire.com/blog/2012/02/06/ivr-101/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 22:20:36 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[IVR / Auto Attendant]]></category>
		<category><![CDATA[auto attendant]]></category>
		<category><![CDATA[election survey]]></category>
		<category><![CDATA[hosted IVR]]></category>
		<category><![CDATA[ivr poll]]></category>
		<category><![CDATA[ivr survey]]></category>
		<category><![CDATA[phone tree]]></category>
		<category><![CDATA[political survey]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3767</guid>
		<description><![CDATA[By Jeff Spisak One of CallFire’s signature features is the Interactive Voice Response application, or IVR.  For a long time the IVR was a developer tool to make interesting phone applications. However, the practical applications of the tool make IVR technology a staple for any business. This brief article will tell you what an IVR [...]]]></description>
			<content:encoded><![CDATA[<p><em>By Jeff Spisak</em></p>
<p style="text-align: left;">One of CallFire’s signature features is the Interactive Voice Response application, or <a href="http://en.wikipedia.org/wiki/Interactive_voice_response">IVR</a>.  For a long time the IVR was a <a href="http://www.callfire.com/dev/index.php/CallFire_XML_Documentation">developer tool</a> to make interesting phone applications. However, the practical applications of the tool make IVR technology a staple for any business. This brief article will tell you what an IVR is, how it works, and how you can make the <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">CallFire IVR</a> work for you.</p>
<p style="text-align: left;">
<p><center><iframe width="560" height="315" src="http://www.youtube.com/embed/iMqqYQuWa5A" frameborder="0" allowfullscreen></iframe></center></p>
<p>Have you ever been greeted by a pre-recorded voice asking you to press keys or speak your response on a phone call to, for instance, your bank?  If so, you are already well acquainted with an IVR.  Simply put, an IVR allows a computer and a human to interact efficiently by using the voice instead of a keyboard or other input device.  But wait, you are thinking:  How is pressing keys on a phone anything like speaking?  In a certain sense, it is the same thing.</p>
<p>When human beings speak, they are making sounds that others can understand, provided they understand the code (language).  When you press any of the twelve keys on your phone, a specific tone is produced.  This is called Dual-tone multi-frequency signaling (<a href="http://en.wikipedia.org/wiki/Dual-tone_multi-frequency_signaling">DTMF</a> for short), but that’s a story for another article.  Each one of these tones represents the computer’s way of making sounds, which other computers can understand, because they understand the code.  You may think that twelve sounds isn’t much of a language, but the Hawaiian language only has a few more sounds than that, and its speakers can understand each other perfectly well.   The IVR is, in this sense, a translator.  It mediates between us and a computer to accomplish certain tasks.So what are some of these tasks?  Let’s look at three common scenarios: the business <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">auto attendant</a>, the voice mail module, and the political survey (examples <a href="http://www.callfire.com/dialer/export/sites/default/docs/MoveOn_CallFire_Political_Case_Study.pdf">here</a> and <a href="http://www.callfire.com/dialer/export/sites/default/docs/Hosted_IVR_Healthcare_Quesgen_CallFire.pdf">here</a>).</p>
<p>The business auto-attendant allows callers to be automatically transferred to an extension without the intervention of an operator or receptionist. Using an IVR to rout calls is one of the ways that smaller companies can appear larger.  There may be three press options, all of which ring the same number. You can also include a voice mail option when no one is around to take the call, and CallFire&#8217;s IVR will email you the message.<img class="alignnone" style="border-style: initial; border-color: initial; padding: 20px; float: right;" title="Hosted IVR" src="http://www.halloo.com/Blog/wp-content/uploads/2011/09/IVR.jpg" alt="" width="268" height="300" /></p>
<p>The voice mail module is another popular IVR subtype, which is integrated with CallFire&#8217;s <a href="http://www.callfire.com/dialer/cm/info/call_tracking.html">call tracking</a> solution.  Purchase a <a href="http://www.callfire.com/dialer/cm/info/tollfree_numbers.html">toll-free or local number</a> from CallFire, and then use the IVR to create a voice mail mailbox.  You may set it up so that calls that forward to your business and the calls that are not answered will be transferred directly to the voice mail.  Calls can also be transferred directly to your voicemail, where the caller can leave a message that you retrieve later.  This can also be used with the business tree—if no one reaches a particular extension, they can leave a message. Together, these aspects of the IVR make it a powerful tool for businesses of all sizes.</p>
<p>In addition to its abilities to process inbound calls, the IVR is essential for surveying large audiences. The largest application of this survey functionality is using the IVR to conduct political polling. Its all very simple: upload a list of potential voters and send out a survey to gauge the level of support for your candidate.  Perhaps you are in favor of building new bridges in your community?  Then send out a survey that asks voters if they are in favor, and if so, to what degree? Your results may even show up on the cable news shows. Beyond the political use case, IVR polling can be utilized by all sorts of organizations to gauge sentiment among members.</p>
<p>These are just a few of the myriad possibilities offered by the <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">CallFire IVR</a>.  Come join our weekly <a href="http://www.callfire.com/dialer/cm/info/webinar.html">webinar</a>, every Wednesday at 11:00 AM Pacific time.  We would be so happy to have you that we may even credit your account with a few bucks just to get you started.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="IVR 101: Auto-Attendants, Survey, Voicemail and More" url="http://www.callfire.com/blog/2012/02/06/ivr-101/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/02/06/ivr-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMS and Telemarketing Compliance</title>
		<link>http://www.callfire.com/blog/2012/02/03/sms-and-telemarketing-compliance/</link>
		<comments>http://www.callfire.com/blog/2012/02/03/sms-and-telemarketing-compliance/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 23:44:59 +0000</pubDate>
		<dc:creator>Daniel_Tawfik</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3827</guid>
		<description><![CDATA[SMS text messaging has revolutionized communication and business marketing. Text messaging allows you to quickly send a concise message that has a higher likelihood of actually being read. While there are many benefits of using SMS as a marketing tool, there are also strict regulations on how text messaging can be used. Today’s petition of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" style="float: left; padding: 20px;" title="FCC Logo" src="http://www.firstamendmentcenter.org/madison/wp-content/uploads/2011/11/fcc-logo-1.jpg" alt="FCC Logo" width="271" height="193" />SMS text messaging has revolutionized communication and business marketing. Text messaging allows you to quickly send a concise message that has a higher likelihood of actually being read. While there are many benefits of using SMS as a marketing tool, there are also strict regulations on how text messaging can be used. Today’s <a href="http://http://revolutionmessaging.com/2012/02/02/join-the-revolution-help-stop-political-text-message-spam/">petition</a> of the Federal Communications Commission to end unwanted political text message spam only underscores the need for you to be 100 percent compliant with FCC regulations.</p>
<p>In order to be compliant, make sure your customers opt in. You cannot simply buy a list of mobile users and start sending bulk text messages. That would be <a href="http://www.fcc.gov/guides/spam-unwanted-text-messages-and-email">spam</a>. Mobile phones are highly personal devices. Make sure that you are only messaging people who have opted-in by giving you consent to receiving text offers for you. Within your call to action be sure to include a disclaimer that is explicit in explaining what they are opting in for. Failing to comply will damage brand reputation as well as undermining consumer trust in SMS.</p>
<p>In the case that you are generating telephone calls for telemarketing purposes from your CallFire account, make sure to register with the <a href="www.dnc.com">DNC registry</a> to have your lists scrubbed against the Do Not Call List. Remember you cannot use a pre-recorded message to tele-market to consumers without having the consumer giving you written permission beforehand.</p>
<p>Remember you and your business are 100% liable for the calls originating from your CallFire account. You should review the CallFire usage terms and consult with an attorney before using CallFire.</p>
<p>For more information on FTC, DNC and Telemarketing compliance please read the following guides:</p>
<ul>
<li><a href="http://www.callfire.com/dialer/cm/info/ftc_dnc_telemarketing_compliance_regulation.html">FTC, DNC and Telemarketing Compliance</a></li>
<li><a href="https://www.callfire.com/dialer/cm/info/telecom_liability.html">CallFire Usage Terms and Liability</a></li>
</ul>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="SMS and Telemarketing Compliance" url="http://www.callfire.com/blog/2012/02/03/sms-and-telemarketing-compliance/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/02/03/sms-and-telemarketing-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don’t Forget to Vote: Text Message Reminders as a GOTV Mobilization Tool</title>
		<link>http://www.callfire.com/blog/2012/02/01/don%e2%80%99t-forget-to-vote-text-message-reminders-as-a-gotv-mobilization-tool/</link>
		<comments>http://www.callfire.com/blog/2012/02/01/don%e2%80%99t-forget-to-vote-text-message-reminders-as-a-gotv-mobilization-tool/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 21:10:25 +0000</pubDate>
		<dc:creator>Daniel_Tawfik</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3769</guid>
		<description><![CDATA[GOTV mobilization is a challenge for any campaign. How a campaign allocates its resources in this late, crucial stage of the campaign can make the difference between winning and losing.  Should we hit the field with another mail piece or do another ad buy? How about paid canvass? What will my call universe look like? [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.callfire.com/blog/wp-content/uploads/2012/01/election-volunteers2.jpg"><img class="alignnone" style="float: left; padding: 20px;" title="election-volunteers2" src="http://www.callfire.com/blog/wp-content/uploads/2012/01/election-volunteers2.jpg" alt="FCC Logo" width="190" height="135" /></a><br />
GOTV mobilization is a challenge for any campaign. How a campaign allocates its resources in this late, crucial stage of the campaign can make the difference between winning and losing.  Should we hit the field with another mail piece or do another ad buy? How about paid canvass? What will my call universe look like? There are so many considerations that it can be a challenge to get the correct mix of ingredients.</p>
<p>A recent study—<a href="http://onlinelibrary.wiley.com/doi/10.1111/j.1540-5907.2009.00401.x/abstract?systemMessage=Wiley+Online+Library+will+be+disrupted+4+Feb+from+10-12+GMT+for+monthly+maintenance">“Don’t Forget to Vote: Text Message Reminders as a Mobilization Tool”</a>—show the effectiveness of the medium. During the study, authored by <a href="http://http://www.lsa.umich.edu/polisci/people/graduatestudents/ci.daleriddleallison_ci.detail">Allison Dale</a> of the <a href="http://www.umich.edu/">University of Michigan</a> and <a href="http://www.mellmangroup.com/index.php?option=com_content&amp;view=article&amp;id=75%3Aaaron-strausss-bio&amp;catid=46&amp;Itemid=69">Aaron Strauss</a> of <a href="www.princeton.edu">Princeton University</a>, texting was used in a nationwide field experiment in the days before the 2006 election. Newly registered and re-registered voters in the treatment group received a text message encouraging them to vote; participants in the control group did not receive a text. Those receiving the text reminders voted at a 3.1 percent higher rate than those who did not.</p>
<p>So why is text messaging so effective? In the age of mass communication, citizens are inundated with political and commercial information through landline phones, U.S. mail, email, and television, which leads recipients to increasingly ignore messages delivered through these media. Because it is time consuming to process, people tend to ignore a majority of unsolicited information that comes their way.</p>
<p>For a political message to be effective, it must break through the barrage of messages competing for the voter’s attention. Studies show that one political mainstay—direct mail pieces—have become less effective over time because of an ever-increasing volume of mail sent out in each new election. In fact, these studies suggest that a single piece of mail only increases voter turnout by 1 percent or less.</p>
<p><a href="http://www.callfire.com/blog/wp-content/uploads/2012/01/smsicon1.jpg"><img class="alignnone" style="float: right; padding: 20px;" title="smsicon" src="http://www.callfire.com/blog/wp-content/uploads/2012/01/smsicon1.jpg" alt="" width="203" height="203" /></a> In contrast to direct mail and other media, text messages are more difficult for recipients to ignore.  The recipient will notice the text message because mobile phones are still relatively uncluttered by “spam” messages. Similarly, the nature of the display makes it difficult to ignore an incoming text message on most phones.</p>
<p><a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">Text messaging</a> is particularly effective in GOTV mobilization because of one simple fact: the audience is already “sold.” By registering to vote, recipients have already signaled their interest in voting. Your text will increase the likelihood of voting because it reminds a person to complete a “civic duty” that he or she already believes is important.</p>
<p>The effectiveness of <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">mobilization reminder texts</a> can be likened to reminding a person to the oil changed in his or her car. Once a person has decided to purchase a car, he or she has made an investment in owning, and also maintaining, the car. Car owners don’t need to be convinced of the importance of getting an oil change; they just need to be reminded to get it done. Like an oil change, voting is an activity that needs to be put on the “to do” list. Voting is not part of one’s daily routine, even for experienced voters; reminders help ensure that potential voters do not forget to visit their polling places.</p>
<p>Relative to other strategies, the study shows that text messaging registered the largest increase in voter turnout. The only medium that resulted in an equivalent increase in voter turnout was door-to-door canvassing. Canvassing is more effective than text messaging on a person-by-person basis. However, the contact rate during the canvassing is much lower than text messaging; people aren’t home, they don’t answer their door, or perhaps they’ve moved. One text message reminder to voters is twice as effective as three direct mail pieces.</p>
<p>When you combine the relative low cost of <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS text messaging</a>, with its proven effectiveness, it becomes crystal clear that text messaging is an essential component of any voter mobilization effort.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="Don’t Forget to Vote: Text Message Reminders as a GOTV Mobilization Tool" url="http://www.callfire.com/blog/2012/02/01/don%e2%80%99t-forget-to-vote-text-message-reminders-as-a-gotv-mobilization-tool/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/02/01/don%e2%80%99t-forget-to-vote-text-message-reminders-as-a-gotv-mobilization-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Enterprise, State Control, and the Telephone</title>
		<link>http://www.callfire.com/blog/2012/01/30/free-enterprise-state-control-and-the-telephone/</link>
		<comments>http://www.callfire.com/blog/2012/01/30/free-enterprise-state-control-and-the-telephone/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 18:38:10 +0000</pubDate>
		<dc:creator>Ryan_Koven</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3716</guid>
		<description><![CDATA[By Ryan Koven With an election on the horizon and debate still raging over the defunct anti-piracy bills SOPA and PIPA, the symbiotic relationship between government and business is a hot issue. The discussion of internet piracy and enforcement of copyright law is a particularly prickly instance of this issue because it stems chiefly from [...]]]></description>
			<content:encoded><![CDATA[<p><em>By Ryan Koven</em></p>
<p>With an election on the horizon and debate still raging over the defunct anti-piracy bills <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">SOPA</a> and <a href="http://en.wikipedia.org/wiki/PROTECT_IP_Act">PIPA</a>, the symbiotic relationship between government and business is a hot issue. The discussion of internet piracy and enforcement of copyright law is a particularly prickly instance of this issue because it stems chiefly from the growth (and now near ubiquity) of a relatively young industry that enjoyed rapid growth in a somewhat relaxed regulatory regime. Though commentators try to frame the discussion of internet regulation as a struggle between free speech and the forces of censorship, the evolution of a new industry is a more relevant lens to analyze the issue. The early history of a related industry, telecommunications, offers some lessons, and possibly a preview of the direction of the debate.</p>
<p>The early 20<sup>th</sup> century witnessed rapid growth in the number of households with a telephone. The businesses that provided service to these new customers, called Local Exchange Carriers (<a href="http://en.wikipedia.org/wiki/Local_exchange_carrier">LECs</a>), also proliferated. Thousands of LECs managed hundreds of thousands of subscribers across the U.S. Competition for new subscribers became fierce, and prices for telephone service fell precipitously. In these heady early days in telephone history regulation of the market and oversight of the participating businesses did not exist, and new LECs emerged in every corner of the U.S. &#8212; in both si<img class="alignnone" style="border-style: initial; border-color: initial; padding: 20px; float: right;" title="Alexander Graham Bell and Mr. Watson" src="http://t2.gstatic.com/images?q=tbn:ANd9GcQ2aZUqbit2CqwkPKtYBPiCRMZu2plAKLcvcCT7b7yKU5RCfqmW81a3yu25" alt="" width="269" height="188" />zable metropolises and remote rural areas.</p>
<p>Telephone service evolved very differently in Europe, where the state took an active interest in regulating or owning the telephone companies from the moment <a href="http://en.wikipedia.org/wiki/Alexander_Graham_Bell">Alexander Graham Bell</a> <a href="http://www.loc.gov/exhibits/treasures/trr002.html">phoned</a> Mr. Watson in 1876. While an abundance of providers and plummeting prices fueled the penetration of the telephone into U.S. households, subscription rates in Europe lagged far behind the United States. In the 1930s the majority of U.S. households had a telephone, while most European countries reported that around 10% of households had a phone.</p>
<p>If the story ended here we might conclude that that the “free enterprise” model in the U.S. beat the state ownership model of Europe at managing the growth of a new industry and encouraging the adoption of new technology. But there are complications. Nothing obligated Local Exchange Carriers to connect with each other, and few of them could send calls through other LECs. Consequently, long distance service became difficult and expensive.  To make matters worse, the telecom behemoth AT&amp;T made it a standard operating policy to not interconnect with independent LECs. <a href="http://www.stern.nyu.edu/faculty/bio/nicholas-economides">Nicholas Economides</a>, a professor of Economics at NYU’s Stern School of Business, summarizes the state of affairs at that time succinctly, noting that this lack of interconnection forced “many businesses to subscribe to two telephone companies with disconnected and incompatible networks, an independent to reach local customers (mainly households) and AT&amp;T to reach suppliers.” This fact became a primary impetus to Federal regulation, and in 1934 the Telecommunications Act created the <a href="http://www.fcc.gov/">Federal Communications Commission</a> in an attempt to regulate the industry.<img class="alignnone" style="float: left; padding: 20px;" title="FCC Logo" src="http://www.firstamendmentcenter.org/madison/wp-content/uploads/2011/11/fcc-logo-1.jpg" alt="FCC Logo" width="271" height="193" /></p>
<p>The history of the telecom industry also suggests that an industry with little or no regulation is prone to monopolization.  AT&amp;T emerged as an effective monopoly in the telecom sector, and enjoyed that status until another round of Federal regulation in the form of antitrust lawsuits brought by the Justice Department in the late 20<sup>th</sup> century. More recently, <a href="http://www.jaronlanier.com/">Jaron Lanier</a>, a computer scientist, technology guru and writer, noted that the independent forums that exploded in the early days of the internet, and that he still uses to discuss, for instance, musical instruments, are threatened by “proprietary social networking.” In a recent New York <em>Times </em>op-ed he <a href="http://www.nytimes.com/2012/01/19/opinion/sopa-boycotts-and-the-false-ideals-of-the-web.html?scp=1&amp;sq=jaron%20lanier&amp;st=cse">wrote</a> that<em> </em>“like many other forms of contact, the musical conversations are moving into private sites, particularly Facebook. To continue to participate, I’d have to accept Facebook’s philosophy, under which it analyzes me, and is searching for new ways to charge third parties for the use of that analysis.” Lanier spoke of this reality as corrosive to the internet idealism central to the backlash against the internet piracy bills.</p>
<p>As industries evolve, new patterns of competition emerge. Economides, writing about deregulation in the telecom industry in the latter part of the 20<sup>th</sup> century, writes, “As a result of technological change, cost conditions shift considerably over time and can transform a market that requires regulation into one that does not.” The telecom industry in the United States in the early 20<sup>th</sup> century, if it ever was a market that didn’t require regulation, became transformed by new patterns of competition into an industry that required regulation. The “Web 2.0” industry is maturing, and the idealization of a wide open space with many independent, co-equal voices in competition may be changing. The history of the telephone suggests that such a free, relatively unregulated and unsupervised paradigm promotes competition and adoption in the early developmental stages of an industry, but that rapid growth will not be without pain, and will eventually be accompanied by supervision.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="Free Enterprise, State Control, and the Telephone" url="http://www.callfire.com/blog/2012/01/30/free-enterprise-state-control-and-the-telephone/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/01/30/free-enterprise-state-control-and-the-telephone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips and Best Practices for Political GOTV Marketing</title>
		<link>http://www.callfire.com/blog/2012/01/27/3696/</link>
		<comments>http://www.callfire.com/blog/2012/01/27/3696/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 21:19:09 +0000</pubDate>
		<dc:creator>Daniel_Tawfik</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[autodial]]></category>
		<category><![CDATA[autodialer]]></category>
		<category><![CDATA[gotv]]></category>
		<category><![CDATA[IVR / Auto Attendant]]></category>
		<category><![CDATA[ivr poll]]></category>
		<category><![CDATA[political]]></category>
		<category><![CDATA[political broadcasting]]></category>
		<category><![CDATA[political broadcasts]]></category>
		<category><![CDATA[political campaigns]]></category>
		<category><![CDATA[political survey]]></category>
		<category><![CDATA[robocall]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[sms marketing]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3696</guid>
		<description><![CDATA[In the spirit of the 2012 election cycle, we’re releasing 8 tips for developing an online political marketing strategy or GOTV campaign in the Cloud. If ever there was a year where technology was going to move democracy, 2012 is it. With an unprecedented amount of money being spent to sway the outcome of the [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: left;">In the spirit of the 2012 election cycle, we’re releasing 8 tips for developing an online political marketing strategy or <a href="https://www.callfire.com/dialer/GOTV-Political-Technology-Campaigns-in-the-Cloud-with-SMS-text-messages-IVR-and-Voice-Broadcast.do">GOTV campaign</a> in the Cloud. If ever there was a year where technology was going to move democracy, 2012 is it. With an unprecedented amount of money being spent to sway the outcome of the election, the side that utilizes new technologies will best position themselves for success in November. These best practice tips will help you leverage technology trends to get more of your supporters to polls:</div>
<ol>
<li>
<h2>Use an IVR to identify voters.</h2>
<div><img class="alignnone" title="IVR for Political Polls" src="https://www.callfire.com/dialer/images/1.jpg" alt="" width="600" height="200" /></div>
<p>Implementing an effective <a href="https://www.callfire.com/dialer/GOTV-Political-Technology-Campaigns-in-the-Cloud-with-SMS-text-messages-IVR-and-Voice-Broadcast.do">GOTV strategy</a> requires identifying your campaign&#8217;s support early to push them to the polls on Election Day. <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">Interactive Voice Response</a> technology allows you to send polls out in the field and get that data directly into your voter file. The automation of the <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">IVR</a> technology allows you to conduct large scale polls at the fraction of the cost of hiring a call center. Its scalability and cost effectiveness make the IVR an integral component to a winning campaign strategy of identifying voters.</li>
<li>
<h2>Increase your call volume with a power-dialer.</h2>
<div><img class="alignnone" title="Political Autodialer" src="https://www.callfire.com/dialer/images/2.jpg" alt="" width="600" height="200" /></div>
<p>Manual hand dialing is a thing of the past. If you&#8217;re still hand dialing from call sheets you&#8217;re not maximizing your volunteer&#8217;s time and not reaching enough voters. The rapid connection rate of <a href="http://www.callfire.com/dialer/cm/info/cloud_call_center.html">power dialing</a> allows you to call through your voter file at two to three times speed of manual hand dialing. The <a href="http://www.callfire.com/dialer/cm/info/cloud_call_center.html">dialer</a> streamlines the calls by skipping bad numbers, busy signals, and voicemail. Your volunteers will find call time to be more effective and far more pleasurable. In addition, this cloud based software allows your volunteers to organize and make calls from home and their own remote locations.</li>
<li>
<h2>SMS text messaging to communicate a call to action with supporters.</h2>
<div><img class="alignnone" title="GOTV SMS text messaging " src="https://www.callfire.com/dialer/images/3.jpg" alt="" width="600" height="200" /></div>
<p>A successful political campaign needs to rapidly communicate call to actions to supporters. In 2008, the Obama Campaign showed how effective <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS text messaging</a> can be as a tool to rapidly organize supporters. Since 2008, more campaigns have used SMS text messaging to power their field programs. In Massachusetts, <a href="http://en.wikipedia.org/wiki/Scott_brown">Scott Brown</a> was able to use texts to send out rapid call to actions. When his opponent appeared on a radio program, Brown texted his supporters to call the station. 90% of the calls to the station were from Brown supporters.</li>
<li>
<h2>Make robocalls  more dynamic with navigable IVR’s.</h2>
<div><img class="alignnone" title="Politcal Robocalls with IVR" src="https://www.callfire.com/dialer/images/4.jpg" alt="" width="600" height="200" /></div>
<p><a href="http://www.callfire.com/dialer/cm/info/voice_broadcast.html">Voice broadcast</a> <a href="http://www.callfire.com/dialer/cm/info/voice_broadcast.html">political robocalls</a> are a tried and true method of rapidly getting your message out to thousands of voters. With navigable <a href="http://www.callfire.com/dialer/cm/info/hosted_ivr.html">IVR</a>&#8216;s you can tailor your message to the issues and values that are important to the voter. Voters can chose from a selection of issues that are important to them and hear the candidate&#8217;s stance on those issues.  These customizable messages also allow you to communicate very specific information on issues and polling locations that are highly targeted.</li>
<li>
<h2>Integrate your web platform with your telephony campaigns.</h2>
<div><img class="alignnone" title="GOTV Political Telephony" src="https://www.callfire.com/dialer/images/5.jpg" alt="" width="600" height="200" /></div>
<p>Successful voter outreach programs should be made easily accessible for volunteers. In the 2010 election, a number of innovative campaigns allowed their volunteers to call from home by providing a link to an <a href="http://www.callfire.com/dialer/cm/info/cloud_call_center.html">autodialer</a> system and dramatically increased the volume of <a href="https://www.callfire.com/dialer/GOTV-Political-Technology-Campaigns-in-the-Cloud-with-SMS-text-messages-IVR-and-Voice-Broadcast.do">GOTV calls</a>. By creating a volunteer portal to your <a href="http://www.callfire.com/dialer/cm/info/cloud_call_center.html">dialer</a> on the campaign homepage, you allow your volunteers to call from home at their own convenience and effectively get out the vote.</li>
<li>
<h2>Optimize Your Social Networking Campaign By Targeting Your Message.</h2>
<div><img class="alignnone" title="GOTV Social Media" src="https://www.callfire.com/dialer/images/6.jpg" alt="" width="600" height="200" /></div>
<p>During the 2008 presidential election, social media revolutionized the way candidates connect to voters and engage supporters. The Obama campaign gathered followers through Facebook, YouTube and Twitter. However, a &#8220;Like&#8221; on Facebook, a YouTube view or a re-blog on Tumblr may not directly affect the ballot box. Now each campaign must answer an important question: How do we turn a digital following into real-world volunteers? Digital followers that feel connected to the campaign will be more likely to make the leap from online supporter to offline volunteer.</li>
<li>
<h2>Link your Voterfile data with your geo-targeted web ads.</h2>
<div><img class="alignnone" title="GOTV Voterfile" src="https://www.callfire.com/dialer/images/7.jpg" alt="" width="600" height="200" /></div>
<p>Today&#8217;s Ad-networks can deliver highly targeted ads to voters and should be a staple of your ad strategy. You can link your web content to your Voterfile data to create &#8220;smart&#8221; web ads that allow you to aim your message at voters in a specific district or demographic. The content of your ads should be relevant to the voters viewing the advertisement; single mothers, sportsmen, and students (for example) should have specific, tailored content that addresses issues they&#8217;re likely to care about. Working through data aggregators you can link IP addresses to individuals in your voter file and your campaign can deliver highly targeted messages.</li>
<li>
<h2>Supplement your existing ad strategy with Video and Rich Media.</h2>
<div><img class="alignnone" title="GOTV Rich media" src="https://www.callfire.com/dialer/images/8.jpg" alt="" width="600" height="200" /></div>
<p>Web content is saturated with advertising, and it&#8217;s getting harder to sift through the banner ads and pop-ups that get in the way of the content we seek. That&#8217;s why it&#8217;s important for your ads to mimic the content that people want to find. Streaming content is more likely to generate attention. Video and rich media allow you to communicate a compelling story that a static banner ad cannot.  You can even make an interactive ad using Flash or HTML5 to create an interactive experience (like a quiz, game or informational widget) without the user ever leaving the webpage they were visiting.</li>
</ol>
<p>As you can see, there are a multitude of ways campaigns can leverage cloud technology to increase campaign awareness and drive supporters to the polls. For more information on how you can get your campaign running in the cloud, visit our <a href="https://www.callfire.com/dialer/GOTV-Political-Technology-Campaigns-in-the-Cloud-with-SMS-text-messages-IVR-and-Voice-Broadcast.do">GOTV best practice page</a>.</p>
<p>Here are some additional resources to help your business text message marketing campaign:</p>
<ul>
<li><a href="http://www.huffingtonpost.com/lauren-coleman/2012-elections-view-from-_b_1232338.html?ref=media&amp;ir=Media">Huffington Post: 2012, A View From the Cloud</a></li>
<li><a href="http://neworganizing.com/project/toolbox">New Organizing Institute: Organizer&#8217;s Tool Box</a></li>
</ul>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="Tips and Best Practices for Political GOTV Marketing" url="http://www.callfire.com/blog/2012/01/27/3696/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/01/27/3696/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips and Best Practices for Business SMS Text Marketing</title>
		<link>http://www.callfire.com/blog/2012/01/27/3671/</link>
		<comments>http://www.callfire.com/blog/2012/01/27/3671/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:29:28 +0000</pubDate>
		<dc:creator>Daniel_Tawfik</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SMS / Text]]></category>
		<category><![CDATA[bulk sms]]></category>
		<category><![CDATA[bulk texts]]></category>
		<category><![CDATA[mass sms]]></category>
		<category><![CDATA[mass texts]]></category>
		<category><![CDATA[sms for business]]></category>
		<category><![CDATA[sms marketing]]></category>
		<category><![CDATA[sms statistics]]></category>
		<category><![CDATA[sms text message marketing]]></category>
		<category><![CDATA[text message marketing]]></category>
		<category><![CDATA[text message statistics]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3671</guid>
		<description><![CDATA[Text messaging should be a part of any business’s marketing strategy. With 95 percent of texts being read, SMS text messaging represents the most cost-effective way to break through the clutter competing for your customer’s attention and increase your revenues. Here are some helpful tips to make sure your SMS marketing campaigns grow your business. To [...]]]></description>
			<content:encoded><![CDATA[<p>Text messaging should be a part of any business’s marketing strategy. With <a href="http://www.nytimes.com/2009/09/24/business/smallbusiness/24texting.html?pagewanted=all">95 percent </a>of texts being read, <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS text messaging</a> represents the most cost-effective way to break through the clutter competing for your customer’s attention and increase your revenues.</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/i2mVuOHT5bc?feature=player_embedded" frameborder="0" allowfullscreen></iframe></p>
<p>Here are some helpful tips to make sure your <a href="http://http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS marketing</a> campaigns grow your business. To read a printable version of the guide click <a href="ttp://www.callfire.com/blog/wp-content/uploads/2012/01/SMS_Text_Messaging_Businesses_Tips_Guide-4.pdf">here:</a></p>
<ol>
<li>
<h2>Drive sign-ups through a call to action.</h2>
<p>An <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS marketing</a> call to action invites users to sign up and opt in for your mobile database by texting a unique keyword to a shared short code. Driving these sign-ups can be as simple as displaying your call to action on your storefront window, reminding customers at the checkout, or integrating your mobile call to action into your traditional advertising campaigns.  Whether it’s your existing marketing materials, your Twitter or Facebook page, or your employees telling every customer in the store, promoting your call to action should take the highest priority in your <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">mobile marketing</a> strategy.</li>
<li>
<h2>Reward customer sign-ups.</h2>
<p>Give the customer a reason to join as a subscriber to your mobile database. This can be as simple as bouncing back a coupon or reward benefit. If you’re a gym, consider something as simple as promoting “FREE complimentary training session in your next membership renewal when you text TRAINING to 67076.” By rewarding customers for subscribing to your mobile database, you’ll raise your opt­–in rates. “Buy one, Get One,” “Dollar Amount Off,” “FREE” are the three highest converting offers for <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">mobile marketing</a>.</li>
<li>
<h2>Set a limit on your offers.</h2>
<p>Rewarding customers with great offers is crucial to an effective <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS marketing</a> campaign. Be careful, however, not to inundate your subscribers with too many offers. The highest redemption rates result from offers sent two to three times a month. This way, when a subscriber misses an offer, they don’t assume that another offer is just around the corner. When businesses extend offers too often, the offers begin to lose their value and customers increasingly choose to opt out.</li>
<li>
<h2>Allow your customers to push your message.</h2>
<p>People like sharing offers they receive with their friends. Encourage your subscribers to push the offer virally by posting the words “FWD 2 a friend” at the end of the message. By encouraging your subscribers to forward the message, you have the potential to spread your message beyond your own database list.</li>
<li>
<h2>Don’t waste your time with one-offs.</h2>
<p>SMS campaigns are more about long-term relationship building than the quick hit. While the first few coupon offers may be geared around database building, text-messaging campaigns can become an extension of customer relationship management system. A dry cleaner that keeps track of his customer’s drop off patterns can than text very specialized discounts or reminder messages based on those patterns. If the customer comes in on Monday, for example, and they don’t show for a couple of days, it can automatically text out a reminder: ‘Hi! We haven&#8217;t seen you in a couple days.’</li>
<li>
<h2>Make Sure Your Customers Opt-in.</h2>
<p>The <a href="http://www.fcc.gov/guides/spam-unwanted-text-messages-and-email">FCC </a>is quite stringent when it comes to who you can send text messages to. You cannot simply buy a list of mobile users and start sending <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">bulk text messages</a>. That would be <a href="http://www.fcc.gov/guides/spam-unwanted-text-messages-and-email">spam</a>. Mobile phones are highly personal devices. Make sure that you are only messaging people who have opted-in by giving you consent to receiving text offers for you. Within your call to action be sure to include a disclaimer that is explicit in explaining what they are opting in for. Failing to comply will damage brand reputation as well as undermining consumer trust in SMS.</li>
<li>
<h2>Mobile alerts to business.</h2>
<p>Don’t assume <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">SMS text marketing</a> only applies to consumers. Alert businesses of webinars or podcasts, or offer on-site incentives to conference attendees.</li>
<li>
<h2>Include a disclaimer.</h2>
<p>Call to actions are highly effective in propelling consumer opt ins to your database, but for many customers concerns over charges and spam will dissuade them from subscribing. To address these concerns, be sure to insert a disclaimer on your call to actions.  The disclaimers should address concerns over text charges, privacy issues, and concerns over <a href="http://www.fcc.gov/guides/spam-unwanted-text-messages-and-email">spam</a>. Also, within the text message, include a way that the subscriber can opt out.</li>
</ol>
<p style="text-align: center;"><img class="aligncenter" title="SMS Business Text Messaging" src="http://justdoittrue.com/wp-content/uploads/2011/09/smsicon.jpg" alt="SMS" width="105" height="105" /></p>
<p style="text-align: left;">
<p>As you can see, there are many aspects of a successful <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">mobile marketing</a> campaign. When done well you can use the power of text messaging to help build brand awareness, increase customer loyalty, and drive up sales. These tips are great place to get started. Feel free to visit our SMS page contact our knowledgeable staff at support@callfire.com.</p>
<p style="text-align: left;">For more tips and best practices download the printable version of the <a href="ttp://www.callfire.com/blog/wp-content/uploads/2012/01/SMS_Text_Messaging_Businesses_Tips_Guide-4.pdf"> guide.</a></p>
<p style="text-align: left;">Here are some additional resources to help your business <a href="http://www.callfire.com/dialer/cm/info/sms_text_messaging.html">text message marketing</a> campaign:</p>
<ul>
<li><a href="http://www.nytimes.com/2009/09/24/business/smallbusiness/24texting.html?pagewanted=all">New York Times SMS Text Messaging Best Practices and Tips</a></li>
<li><a href="http://www.ctiawireless.com/site/index.cfm/smsmms-terms-conditions">FTC Regulations on SMS Text Marketing</a></li>
<li><a href="http://www.fcc.gov/guides/spam-unwanted-text-messages-and-email">FCC Guidelines on SMS Text Marketing</a></li>
<li><a href="http://www.mediapost.com/publications/article/110802/">Online Media Daily: Don&#8217;t Forget About Mobile Marketing</a></li>
<li><a href="http://www.mobilemarketer.com/cms/opinion/classic-guides/3948.html">Mobile Marketer: SMS Text Marketing Guidelines</a></li>
</ul>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="Tips and Best Practices for Business SMS Text Marketing" url="http://www.callfire.com/blog/2012/01/27/3671/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/01/27/3671/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CallFire Grill gets New Editor</title>
		<link>http://www.callfire.com/blog/2012/01/04/callfire-grill-gets-new-editor/</link>
		<comments>http://www.callfire.com/blog/2012/01/04/callfire-grill-gets-new-editor/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 20:18:40 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3475</guid>
		<description><![CDATA[Hi everybody. Mark Ziegler here. I&#8217;m the newest hire at CallFire, and one of my duties as communications manager will be to coordinate posts to this blog. I&#8217;ll do my best to keep you up to date on important developments at the company and to provide you with insight about how our products can add [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everybody. Mark Ziegler here. I&#8217;m the newest hire at CallFire, and one of my duties as communications manager will be to coordinate posts to this blog. I&#8217;ll do my best to keep you up to date on important developments at the company and to provide you with insight about how our products can add to your business&#8217;s productivity and bottom line.</p>
<p>In addition, I&#8217;ll help produce documentation — for you, our customers, and for our staff — about our continuing switchover to a new telephony platform, which will power our new-look website. The new site, Tesla (<a title="Tesla" href="http://tesla.callfire.com" target="_blank">tesla.callfire.com</a>), is part of CallFire&#8217;s gradual transition from phone-centric services to more contact-centric products. Creating campaigns should become easier with the improved user interface that Tesla provides, but there will no doubt be a bit of a learning curve. We&#8217;ll try to make the change as seamless as possible for all involved. This move to Tesla is just part of CallFire&#8217;s long-term goal of making telephony as easy as email.</p>
<p>Now, a brief introduction. I&#8217;m a graduate of the University of Missouri School of Journalism, with another degree in political science. I spent 14 years at The Boeing Company, mostly writing for a variety of publications, including Boeing News. Other past employers and clients have included Weyerhaeuser, Holland America Line, Monsanto, the Washington State Department of Personnel, Fluke Networks, and Digeo, a Paul Allen high-tech entertainment venture.</p>
<p>Alright already — enough about me. Let&#8217;s talk more about you. And about cloud call centers, voice broadcasts, hosted interactive voice response (IVR) systems, Tesla and the like!</p>
<p>I look forward to an interactive discussion with you, our customers. Please feel free to contact me anytime — mark@CallFire.com — with any questions or blog post ideas.</p>
<p>In the meantime, Happy New Year from all of us at CallFire!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="CallFire Grill gets New Editor" url="http://www.callfire.com/blog/2012/01/04/callfire-grill-gets-new-editor/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2012/01/04/callfire-grill-gets-new-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re Hiring a Staff Writer</title>
		<link>http://www.callfire.com/blog/2011/11/10/staff-writer/</link>
		<comments>http://www.callfire.com/blog/2011/11/10/staff-writer/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 01:30:17 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Office News]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3458</guid>
		<description><![CDATA[CallFire is looking for a Staff Writer. Here&#8217;s the deal, we&#8217;re working on our next big platform code named Tesla and are quickly realizing that in our drive to become code monsters, we&#8217;ve kinda skimped on the documentation part. We need someone who can communicate in the English language, all the amazing things our platform [...]]]></description>
			<content:encoded><![CDATA[<p>CallFire is looking for a Staff Writer.</p>
<p>Here&#8217;s the deal, we&#8217;re working on our next big platform code named <a href="http://tesla.callfire.com">Tesla</a> and are quickly realizing that in our drive to become code monsters, we&#8217;ve kinda skimped on the documentation part. We need someone who can communicate in the English language, all the amazing things our platform does. This is where you come in.</p>
<p><strong>What you bring to the table:</strong></p>
<p><strong></strong>A passion for writing for diverse audiences and a love for modern prose but more specifically:</p>
<ol>
<li>Ability to author articles for the company blog as well as provide editorial oversight to company blogs.</li>
<li>Participate in sales &amp; support meetings studying the major reasons for support calls and authoring online content.</li>
<li>Participate in dev team scrum sessions understanding our products and writing and updating online product documentation.</li>
<li>Provide editorial oversight to employee authored content.</li>
<li>Be an online community manager on our CMS site, moderating comments, forums, and providing the human oversight to the content feedback loop.</li>
</ol>
<p><strong>What we bring to the table:</strong></p>
<ol>
<li>Full-time work three blocks from the Ocean in sunny Santa Monica</li>
<li>Working at a fast paced, fast growing startup that&#8217;s never seen a quarter of negative growth.</li>
<li>Work with a team that loves to work hard and play hard.</li>
</ol>
<p><strong>How to Apply:</strong><br />
Find us online via <a href="http://www.facebook.com/callfire">Facebook</a>, <a href="http://twitter.com/#!/callfire">Twitter</a>, or <a href="jobs at callfire dot com">Email</a>, send us actual writing samples. This can be blog posts, case studies, long polemics in forums&#8211;anything. We want to see how you write! So, drop us a line, send us a tweet, or friend us on Facebook, we would love to hear from you.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="We're Hiring a Staff Writer" url="http://www.callfire.com/blog/2011/11/10/staff-writer/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2011/11/10/staff-writer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>A Lesson From Netflix: Don&#8217;t Lose Your Customers&#8217; Trust</title>
		<link>http://www.callfire.com/blog/2011/11/03/a-lesson-from-netflix-dont-lose-your-customers-trust/</link>
		<comments>http://www.callfire.com/blog/2011/11/03/a-lesson-from-netflix-dont-lose-your-customers-trust/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 15:00:26 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.callfire.com/blog/?p=3427</guid>
		<description><![CDATA[by Natalia Klishina Just the other day, I joined the 805,000 people who have unsubscribed from Netflix. First there were the price hikes earlier this summer, then plans to rebrand its DVD rental service as Quikster, then an announcement that it was canceling those plans (probably in a frantic effort to appease all the upset [...]]]></description>
			<content:encoded><![CDATA[<p><em>by Natalia Klishina</em></p>
<p><img src="http://www.callfire.com/blog/wp-content/uploads/2011/10/netflix.jpg" width="310" align="left" style="margin: 0px 10px 0px 0px">Just the other day, I joined the <a href="http://www.technology-digital.com/web20/netflix-price-hike-costs-the-company-805000-subscribers" target="_blank">805,000 people</a> who have unsubscribed from Netflix. First there were the price hikes earlier this summer, then plans to rebrand its DVD rental service as Quikster, then an announcement that it was canceling those plans (probably in a frantic effort to appease all the upset customers and investors). None of these events were all <em>that</em> significant on their own, and even combined probably didn&#8217;t greatly impact their customer base. What they <em>did</em> do, is make Americans lose trust in the company as a whole. So let us all take a lesson from Netflix and make an effort to stay trustworthy.</p>
<p>If you&#8217;ve read my previous posts, you know that I don&#8217;t think any argument is complete without some numbers. So voila. According to the 2010 Edelman Trust Barometer, honesty and trust are more important to customers than the quality of the product or service. And just take a look to some of these other statistics from the same report:</p>
<ul>
<li>77% of people will not buy products or services from a company they do not trust.</li>
<li>91% of people would buy a product from a company they trusted.</li>
<li>55% would pay a premium for products or services when trust is present.</li>
<li>72% are willing to share the reasons why they don&#8217;t trust a company with people they don&#8217;t know.</li>
</ul>
<p>Not only are people astronomically less likely to buy from you if they don&#8217;t trust you, but they&#8217;re also just as likely to tell others not to trust you either. On the bright side, if they <em>do</em> trust you, they&#8217;ll buy from you and even pay extra. That&#8217;s incentive enough for us.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_61730" title="A Lesson From Netflix: Don't Lose Your Customers' Trust" url="http://www.callfire.com/blog/2011/11/03/a-lesson-from-netflix-dont-lose-your-customers-trust/"></script>]]></content:encoded>
			<wfw:commentRss>http://www.callfire.com/blog/2011/11/03/a-lesson-from-netflix-dont-lose-your-customers-trust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

