<?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>Brontoversity &#187; personalization</title>
	<atom:link href="http://brontoversity.com/tag/personalization/feed/" rel="self" type="application/rss+xml" />
	<link>http://brontoversity.com</link>
	<description>Product Education for Bronto's Email Marketing Application</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:57:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>No Data? No Problem. Using Dynamic Content To Handle Empty Tags</title>
		<link>http://brontoversity.com/2010/06/03/no-data-no-problem-using-dynamic-content-to-handle-empty-tags/</link>
		<comments>http://brontoversity.com/2010/06/03/no-data-no-problem-using-dynamic-content-to-handle-empty-tags/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 19:37:53 +0000</pubDate>
		<dc:creator>John Gunther</dc:creator>
				<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[dynamic code]]></category>
		<category><![CDATA[Dynamic Content]]></category>
		<category><![CDATA[field tag]]></category>
		<category><![CDATA[personalization]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=7598</guid>
		<description><![CDATA[
Placing Field Tags in your messages is a great way to use existing contact data to create more personalized messages. However, sometimes you don&#8217;t have certain data for contacts in your account. Without this data, the tags will be replaced with no content. Obviously, this can create problems and be a blemish on an otherwise [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/10/29/cracking-the-dynamic-content-code/' rel='bookmark' title='Permanent Link: Cracking The Dynamic Content Code'>Cracking The Dynamic Content Code</a> <small>We recently blogged about our new Dynamic Content feature introduced...</small></li>
<li><a href='http://brontoversity.com/2009/10/22/the-logical-way-to-send-email-dynamic-content/' rel='bookmark' title='Permanent Link: The Logical Way To Send Email: Dynamic Content'>The Logical Way To Send Email: Dynamic Content</a> <small>We have been blogging a lot in recent weeks about...</small></li>
<li><a href='http://brontoversity.com/2010/03/16/adding-blocks-of-re-editable-dynamic-content/' rel='bookmark' title='Permanent Link: Adding Blocks Of Re-Editable Dynamic Content'>Adding Blocks Of Re-Editable Dynamic Content</a> <small>In the past, the only way for you to edit...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2010/06/No-Name-Road-on-Flickr-Photo-Sharing.png"><img style="float: right; padding: 5px 5px 5px 5px;" title="No Name Road on Flickr - Photo Sharing!" src="http://brontoversity.com/wp-content/uploads/2010/06/No-Name-Road-on-Flickr-Photo-Sharing.png" alt="" width="194" height="322" /></a></p>
<p>Placing <a href="http://brontoversity.com/2009/06/16/getting-personal-with-your-contacts/" target="_new">Field Tags</a> in your messages is a great way to use existing contact data to create more personalized messages. However, sometimes you don&#8217;t have certain data for contacts in your account. Without this data, the tags will be replaced with no content. Obviously, this can create problems and be a blemish on an otherwise flawless email.</p>
<h3>Tell Me More</h3>
<p>Let&#8217;s start off with an example. Let&#8217;s say at the top of your message you have the following salutation:</p>
<p>Dear <code>%%firstname%%</code>,</p>
<p>When the message is sent, <code>%%firstname%%</code> will get replaced with the value stored for the contact in the <em>firstname</em> field. However, if there is no value in the <em>firstname</em> field for the contact, the salutation will read &#8220;Dear ,&#8221;. Not only does this look bad, but it ruins the personalized feel of the message and leads your contacts to believe that grammar was a sour point for you in school!</p>
<h3>Dynamic Content To The Rescue!</h3>
<p>To prevent this little mishap from occurring, you can make use of Dynamic Content. We could remedy the issue in the example above by doing the following:</p>
<ol>
<li>Click <strong>Insert Dynamic Content</strong> on the WYSIYG editor toolbar.</li>
<li>Select the options shown in the screen shot below from the Edit Dynamic Content window.</li>
<li>Click <strong>Insert Raw Dynamic Code</strong> or <strong>Insert Re-Editable Dynamic Content</strong>.</li>
<p><a href="http://brontoversity.com/wp-content/uploads/2010/06/Bronto-Editing-Message_-Ds-Dc-mF-mFL-mFlink-BN-mT-cF-MSL-Survey-HF-1.png" target="_new"><img style="float: left; padding: 5px 5px 5px 5px;" title="Bronto - Editing Message_ Ds, Dc, mF, mFL, mFlink, BN, mT, cF, MSL, Survey, H&amp;F-1" src="http://brontoversity.com/wp-content/uploads/2010/06/Bronto-Editing-Message_-Ds-Dc-mF-mFL-mFlink-BN-mT-cF-MSL-Survey-HF-1.png" alt="" width="531" height="333" /></a>
</ol>
<p>Basically this works by checking to see if the <em>firstname</em> field is blank. If it is, then the text &#8220;Valued Customer&#8221; is used. If the <em>firstname</em> field for the contact has a value, then the value is used. For those of you familiar with <a href="http://brontoversity.com/2009/10/29/cracking-the-dynamic-content-code/" target="_new">Dynamic Code</a>, the complete code for the salutation would look something like this:</p>
<p><code>Dear {dynamic_code}{if $Contact.firstname eq ""}{literal}Valued Customer{/literal}{else}{literal}%%firstname%%{/literal}{/if}{/dynamic_code}</code></p>
<p>A contact with no value in the <em>firstname</em> field would see &#8220;Dear Valued Customer&#8221;, whereas a contact with a value in their <em>firstname</em> field would see &#8220;Dear John Doe&#8221; (where John Doe is the value in the <em>firstname</em> field for the contact).</p>
<p>So now you have an easy way to handle instances when there is no data in Field Tags you use in your messages. Feel free to leave any questions or comments in the comments section below.</p>
<p><em>John Gunther<br />
Technical Writer/eLearning Specialist at Bronto<br />
Editor of Brontoversity</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/10/29/cracking-the-dynamic-content-code/' rel='bookmark' title='Permanent Link: Cracking The Dynamic Content Code'>Cracking The Dynamic Content Code</a> <small>We recently blogged about our new Dynamic Content feature introduced...</small></li>
<li><a href='http://brontoversity.com/2009/10/22/the-logical-way-to-send-email-dynamic-content/' rel='bookmark' title='Permanent Link: The Logical Way To Send Email: Dynamic Content'>The Logical Way To Send Email: Dynamic Content</a> <small>We have been blogging a lot in recent weeks about...</small></li>
<li><a href='http://brontoversity.com/2010/03/16/adding-blocks-of-re-editable-dynamic-content/' rel='bookmark' title='Permanent Link: Adding Blocks Of Re-Editable Dynamic Content'>Adding Blocks Of Re-Editable Dynamic Content</a> <small>In the past, the only way for you to edit...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2010/06/03/no-data-no-problem-using-dynamic-content-to-handle-empty-tags/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting Personal With Your Contacts</title>
		<link>http://brontoversity.com/2009/06/16/getting-personal-with-your-contacts/</link>
		<comments>http://brontoversity.com/2009/06/16/getting-personal-with-your-contacts/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 17:15:35 +0000</pubDate>
		<dc:creator>Frank Chapman</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[add name]]></category>
		<category><![CDATA[field tag]]></category>
		<category><![CDATA[fields]]></category>
		<category><![CDATA[greeting]]></category>
		<category><![CDATA[if then]]></category>
		<category><![CDATA[no data]]></category>
		<category><![CDATA[personalization]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=3278</guid>
		<description><![CDATA[As an email marketer, your job is to elicit a response from your readership. One of the best ways to do this is by personalizing the messages that you send to your contacts. People generally will feel more at ease when they feel like they are being recognized as an individual.
A Greeting For Each Of [...]


Related posts:<ol><li><a href='http://brontoversity.com/2010/06/03/no-data-no-problem-using-dynamic-content-to-handle-empty-tags/' rel='bookmark' title='Permanent Link: No Data? No Problem. Using Dynamic Content To Handle Empty Tags'>No Data? No Problem. Using Dynamic Content To Handle Empty Tags</a> <small> Placing Field Tags in your messages is a great...</small></li>
<li><a href='http://brontoversity.com/2009/11/03/this-time-its-personal-testing-personalization-fields-in-your-messages/' rel='bookmark' title='Permanent Link: This Time, It&#8217;s Personal: Testing Personalization Fields In Your Messages'>This Time, It&#8217;s Personal: Testing Personalization Fields In Your Messages</a> <small>One of the most powerful tools you can use in...</small></li>
<li><a href='http://brontoversity.com/2010/05/13/personalize-your-contacts-storing-field-data-with-the-api/' rel='bookmark' title='Permanent Link: Personalize Your Contacts, Storing Field Data With The API'>Personalize Your Contacts, Storing Field Data With The API</a> <small>OK, so your integration is running. You&#8217;re adding contacts at...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As an email marketer, your job is to elicit a response from your readership. One of the best ways to do this is by personalizing the messages that you send to your contacts. People generally will feel more at ease when they feel like they are being recognized as an individual.</p>
<h3>A Greeting For Each Of Your Contacts</h3>
<p><img class="size-full wp-image-3287 alignright" src="http://brontoversity.com/wp-content/uploads/2009/06/handshake.jpg" alt="A Handshake from You to Your Contact" width="210" height="217" /></p>
<p>Adding a personalized greeting using a contact&#8217;s first name in Bronto is an easy way to add a little more impact to any campaign.  To add a contact&#8217;s first name to an email, all you need is the contact&#8217;s name and a little know-how concerning field tags.</p>
<p>In this example we will be adding the contact&#8217;s first name in a salutation.  You will need to have a field in Bronto that is storing your contacts&#8217; first names.  It is important to note that the name for a field needs to be in all lower case with no spaces.  In the case of the illustration below, the name of this field is &#8220;firstname&#8221;.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/06/contact_info.jpg" target="_blank"><img class="aligncenter size-full wp-image-3290" src="http://brontoversity.com/wp-content/uploads/2009/06/contact_info.jpg" alt="contact_info" width="493" height="70" /></a></p>
<p>Now, to add the field to your message, you will add this code <code>%%firstname%%</code> where you would like to see the name appear.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/06/tag01inemail.jpg" target="_blank"><img class="aligncenter size-full wp-image-3299" src="http://brontoversity.com/wp-content/uploads/2009/06/tag01inemail.jpg" alt="tag01inemail" width="472" height="220" /></a></p>
<p>The application will see this tag and add the name as the message is sent.  The resulting message salutation will look like this:</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/06/name01inemail.jpg" target="_blank"><img class="aligncenter size-full wp-image-3304" src="http://brontoversity.com/wp-content/uploads/2009/06/name01inemail.jpg" alt="name01inemail" width="480" height="220" /></a></p>
<h3>What If I Do Not Have Everybody&#8217;s Name?</h3>
<p>It&#8217;s okay, Bronto can help with that as well.  You will need to decide how you would like to refer to your contacts that you do not have first name information for.  As an example, we will call our nameless contacts &#8220;Valued Customer&#8221;.</p>
<p>The tag that you would need to us is <code>%%if(%%firstname%% is empty,"Valued Customer",%%firstname%%)%%</code>.  This tag should look like the one in the image below when you preview your message.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/06/tag02inemail.jpg" target="_blank"><img class="aligncenter size-full wp-image-3307" src="http://brontoversity.com/wp-content/uploads/2009/06/tag02inemail.jpg" alt="tag02inemail" width="480" height="220" /></a></p>
<p>This &#8220;if statement&#8221; is letting the Bronto application know that you would like to use the first name for the contact, unless you have no data available in the field for that contact.  If there is no data, the application will substitute the statement inside the quotation marks.</p>
<h3>A Few Things To Remember About Field Tags In Bronto</h3>
<ul>
<li>You must have a field in your account that corresponds to the field tag you wish to use (i.e. the &#8220;firstname&#8221; field that corresponds with the <code>%%firstname%%</code> field tag).</li>
<li>You must refer to the field exactly by name. Spelling counts and the tag is case sensitive.</li>
<li>Field tags aren&#8217;t just for just salutations.  You can use field tags and the data that goes along with them for many other marketing purposes. Some examples of this would be, recent product purchases, important dates, or a dynamic link to a contacts personal landing page.</li>
</ul>
<p>With a creative mind and a good knowledge of how field tags work in Bronto, you now have a tool with limitless marketing possibilities.  Please use this tool wisely and remember to always <a href="http://blog.bronto.com/2009/06/01/why-is-testing-my-favorite-word/" target="_new">test and then test again</a>.</p>
<p><em>Frank Chapman<br />
Client Support Specialist at Bronto</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2010/06/03/no-data-no-problem-using-dynamic-content-to-handle-empty-tags/' rel='bookmark' title='Permanent Link: No Data? No Problem. Using Dynamic Content To Handle Empty Tags'>No Data? No Problem. Using Dynamic Content To Handle Empty Tags</a> <small> Placing Field Tags in your messages is a great...</small></li>
<li><a href='http://brontoversity.com/2009/11/03/this-time-its-personal-testing-personalization-fields-in-your-messages/' rel='bookmark' title='Permanent Link: This Time, It&#8217;s Personal: Testing Personalization Fields In Your Messages'>This Time, It&#8217;s Personal: Testing Personalization Fields In Your Messages</a> <small>One of the most powerful tools you can use in...</small></li>
<li><a href='http://brontoversity.com/2010/05/13/personalize-your-contacts-storing-field-data-with-the-api/' rel='bookmark' title='Permanent Link: Personalize Your Contacts, Storing Field Data With The API'>Personalize Your Contacts, Storing Field Data With The API</a> <small>OK, so your integration is running. You&#8217;re adding contacts at...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/06/16/getting-personal-with-your-contacts/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
