<?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; field tag</title>
	<atom:link href="http://brontoversity.com/tag/field-tag/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>This Time, It&#8217;s Personal: Testing Personalization Fields In Your Messages</title>
		<link>http://brontoversity.com/2009/11/03/this-time-its-personal-testing-personalization-fields-in-your-messages/</link>
		<comments>http://brontoversity.com/2009/11/03/this-time-its-personal-testing-personalization-fields-in-your-messages/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 19:04:28 +0000</pubDate>
		<dc:creator>Brad Gurley</dc:creator>
				<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[email personalization]]></category>
		<category><![CDATA[email testing]]></category>
		<category><![CDATA[field tag]]></category>
		<category><![CDATA[fields]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=5291</guid>
		<description><![CDATA[One of the most powerful tools you can use in email marketing is personalization. Including your recipient&#8217;s name or other identifying information helps to give your emails a truly individualized feel and can help increase readership. After all, people are much more likely to continue reading an email that addresses them by name, instead of [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/11/17/testing-testing-1-2-3-sending-test-messages/' rel='bookmark' title='Permanent Link: Testing, Testing 1, 2, 3: Sending Test Messages'>Testing, Testing 1, 2, 3: Sending Test Messages</a> <small>As a Bronto user, you have probably been sending test...</small></li>
<li><a href='http://brontoversity.com/2009/08/13/how-personalization-affects-link-tracking/' rel='bookmark' title='Permanent Link: How Personalization Affects Link Tracking'>How Personalization Affects Link Tracking</a> <small>Back in June, Client Support Specialist Frank Chapman wrote a...</small></li>
<li><a href='http://brontoversity.com/2009/12/29/fast-access-to-messages-and-reports/' rel='bookmark' title='Permanent Link: Fast Access To Messages And Reports'>Fast Access To Messages And Reports</a> <small>As 2010 approaches, many of us will be plotting our...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2009/11/envelope.jpg"><img style="padding:5px 5px 5px 5px; float: right;" src="http://brontoversity.com/wp-content/uploads/2009/11/envelope.jpg" alt="Personalized envelope" width="298" height="229" /></a>One of the most powerful tools you can use in email marketing is personalization. Including your recipient&#8217;s name or other identifying information helps to give your emails a truly individualized feel and can help increase readership. After all, people are much more likely to continue reading an email that addresses them by name, instead of a stock greeting like &#8220;Dear Reader.&#8221;</p>
<p>Earlier this year, Frank Chapman gave us a great post on how to use personalization in your messages, <a title="Brontoversity | Getting Personal With Your Contacts" href="http://brontoversity.com/2009/06/16/getting-personal-with-your-contacts/" target="_new">Getting Personal With Your Contacts</a>. If you&#8217;re wondering how to get started using personalization, check out his article for a quick how-to guide.</p>
<p>If you&#8217;re already personalizing your emails, though, you may be missing out on a key feature: personalization testing. You probably already know that Bronto&#8217;s Send Test feature provides a quick view of message formatting and layout in your inbox. But with one simple step, you can also test your message personalization fields to ensure they&#8217;re working properly.</p>
<p>Once you&#8217;ve composed your message and are ready to test it out, click the Send Test button.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/11/sendtest-2.jpg" target="_new"><img style="padding:5px 5px 5px 5px;" src="http://brontoversity.com/wp-content/uploads/2009/11/sendtest-2.jpg" alt="Send Test button" width="535" height="147" /></a></p>
<p>On the next page, set your sending options and recipients. Then, check the box marked &#8220;Use a random contact for personalization&#8221; shown below. Choosing this will pull the field value from a random contact and use it within your test message.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/11/randomcontact-2.jpg" target="_new"><img style="padding:5px 5px 5px 5px;" src="http://brontoversity.com/wp-content/uploads/2009/11/randomcontact-2.jpg" alt="Use a random contact for personalization checkbox" width="558" height="253" /></a></p>
<p>Only the field value from the random contact will be pulled &#8211; they will not be sent the message. Only the person(s) you specify in the sending options will receive the message.</p>
<p>Once you&#8217;ve checked this box, proceed with verifying and sending your test message. When you receive the message, you&#8217;ll see your personalization tag replaced with a value pulled from a random contact!</p>
<p>As always, if you have any questions about personalizing messages, feel free to post in the comments or to open a case from the Support link within your account.</p>
<p><em>Brad Gurley<br />
Support Associate at Bronto</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/11/17/testing-testing-1-2-3-sending-test-messages/' rel='bookmark' title='Permanent Link: Testing, Testing 1, 2, 3: Sending Test Messages'>Testing, Testing 1, 2, 3: Sending Test Messages</a> <small>As a Bronto user, you have probably been sending test...</small></li>
<li><a href='http://brontoversity.com/2009/08/13/how-personalization-affects-link-tracking/' rel='bookmark' title='Permanent Link: How Personalization Affects Link Tracking'>How Personalization Affects Link Tracking</a> <small>Back in June, Client Support Specialist Frank Chapman wrote a...</small></li>
<li><a href='http://brontoversity.com/2009/12/29/fast-access-to-messages-and-reports/' rel='bookmark' title='Permanent Link: Fast Access To Messages And Reports'>Fast Access To Messages And Reports</a> <small>As 2010 approaches, many of us will be plotting our...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/11/03/this-time-its-personal-testing-personalization-fields-in-your-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Personalization Affects Link Tracking</title>
		<link>http://brontoversity.com/2009/08/13/how-personalization-affects-link-tracking/</link>
		<comments>http://brontoversity.com/2009/08/13/how-personalization-affects-link-tracking/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 19:02:59 +0000</pubDate>
		<dc:creator>John Gunther</dc:creator>
				<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[click-through tracking]]></category>
		<category><![CDATA[field tag]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=4128</guid>
		<description><![CDATA[Back in June, Client Support Specialist Frank Chapman wrote a post on personalizing your messages using field tags.  As Frank said, field tags are a phenomenal way to utilize the contact data you have to create relevant, personalized messages.  Additionally, field tags can actually be used to complete a URL.  While this [...]


Related posts:<ol><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/01/14/tracking-non-commerce-goals/' rel='bookmark' title='Permanent Link: Tracking Non-Commerce Goals'>Tracking Non-Commerce Goals</a> <small>I recently covered a couple different ways to track conversions....</small></li>
<li><a href='http://brontoversity.com/2009/12/03/dynamically-adding-values-to-conversion-tracking-urls/' rel='bookmark' title='Permanent Link: Dynamically Adding Values To Conversion Tracking URLs'>Dynamically Adding Values To Conversion Tracking URLs</a> <small>In recent weeks, I have been getting a lot of...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://brontoversity.com/wp-content/uploads/2009/08/3402955869_5c79c8c7ef-11.png" alt="Personalization Of Links In Bronto" title="Personalization Of Links In Bronto" width="327" height="218" style="float:right; padding:5px 5px 5px 5px;" />Back in June, Client Support Specialist Frank Chapman wrote a post on <a href="http://brontoversity.com/2009/06/16/getting-personal-with-your-contacts/" target="_new">personalizing your messages using field tags</a>.  As Frank said, field tags are a phenomenal way to utilize the contact data you have to create relevant, personalized messages.  Additionally, field tags can actually be used to complete a URL.  While this can be a very powerful tool, there are some things you should keep in mind before you use field tags to complete URLs.</p>
<h3>How Does It Work</h3>
<p>Any link within a message may include a field tag. A common example is a userid or email address appended as a parameter to a link:</p>
<p><code>http ://mysite.com/foo/bar?sale=3322fe&amp;custId=%%custid%%</code><br />
<strong>NOTE</strong>: For this example, imagine <code>custid</code> is a field you maintain for your contacts.</p>
<p>Links created in this manner are tracked properly, with results showing normally in the click-through tracking report. Because the personalization takes place in the last step in the process (when we actually redirect the URL), the click-through tracking report actually shows the link with personalization tags still in tag format (<code>%%custid%%</code>).</p>
<h3>Warning About URLs Entirely Composed Of Field Tags</h3>
<p>Currently, we cannot track links that are entirely populated by a tag:</p>
<p><code>href='%%link%%'</code></p>
<p>The reason we cannot track this type of URL is that there is no root URL for us to latch onto. In these cases, the link is still inserted into the message, but it is not encoded with a tracking link. Because of this, we have no indication that the link was ever clicked.  So if you need or want click-through tracking for this URL, you should not construct the URL entirely using field tags.</p>
<h3>Take A Look For Yourself</h3>
<p>The screenshot below demonstrates how the application handles click-through tracking for URLs built using field tags.  The text in yellow explains each URL and why it was or was not tracked (Click on the image to enlarge it).<br />
<a href="http://brontoversity.com/wp-content/uploads/2009/08/click_through.png" target="_new"><img style="float:middle; padding:5px 5px 5px 5px;" title="Click Through Tracking With Field Tags" src="http://brontoversity.com/wp-content/uploads/2009/08/click_through.png" alt="Click Through Tracking With Field Tags" width="489" height="368" /></a></p>
<p>Field tags can be a very useful tool, especially if you are using them to complete URLs for your messages.  Remember to be mindful of the effects field tags have on click-through tracking and you will be able to create the kinds of messages that get the results you want!</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/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/01/14/tracking-non-commerce-goals/' rel='bookmark' title='Permanent Link: Tracking Non-Commerce Goals'>Tracking Non-Commerce Goals</a> <small>I recently covered a couple different ways to track conversions....</small></li>
<li><a href='http://brontoversity.com/2009/12/03/dynamically-adding-values-to-conversion-tracking-urls/' rel='bookmark' title='Permanent Link: Dynamically Adding Values To Conversion Tracking URLs'>Dynamically Adding Values To Conversion Tracking URLs</a> <small>In recent weeks, I have been getting a lot of...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/08/13/how-personalization-affects-link-tracking/feed/</wfw:commentRss>
		<slash:comments>0</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>
