<?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; fields</title>
	<atom:link href="http://brontoversity.com/tag/fields/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>Personalize Your Contacts, Storing Field Data With The API</title>
		<link>http://brontoversity.com/2010/05/13/personalize-your-contacts-storing-field-data-with-the-api/</link>
		<comments>http://brontoversity.com/2010/05/13/personalize-your-contacts-storing-field-data-with-the-api/#comments</comments>
		<pubDate>Thu, 13 May 2010 19:00:09 +0000</pubDate>
		<dc:creator>Alex Durzy</dc:creator>
				<category><![CDATA[API Version 4]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[add contacts]]></category>
		<category><![CDATA[API Legacy Version 3]]></category>
		<category><![CDATA[fields]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[Version 4]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=7428</guid>
		<description><![CDATA[OK, so your integration is running. You&#8217;re adding contacts at a dizzying pace, and then your marketing team wants to send some personalized messages and&#8230;whoops, all you have are email addresses. You neglected to push any customer data that could be used to personalize a message; first name, last name, favorite soda, etc.  Whatever [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/09/29/diy-integrations-ii-updating-contact-field-information-with-direct-update/' rel='bookmark' title='Permanent Link: DIY Integrations II: Updating Contact Field Information With Direct Update'>DIY Integrations II: Updating Contact Field Information With Direct Update</a> <small> Integrating your website or database with a third party...</small></li>
<li><a href='http://brontoversity.com/2010/02/18/welcome-friend-adding-new-contacts-using-the-api/' rel='bookmark' title='Permanent Link: Welcome Friend! Adding New Contacts Using the API'>Welcome Friend! Adding New Contacts Using the API</a> <small> This post only applies to Legacy Version 3 of...</small></li>
<li><a href='http://brontoversity.com/2010/04/23/adding-contacts-to-a-specific-list-with-direct-add/' rel='bookmark' title='Permanent Link: Adding Contacts To A Specific List With Direct Add'>Adding Contacts To A Specific List With Direct Add</a> <small>A few months ago, Lucas Weber wrote a post called...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; padding: 5px 5px 5px 5px;" src="http://brontoversity.com/wp-content/uploads/2010/05/field.jpg" alt="Corn Field" width="250" height="166" />OK, so your integration is running. You&#8217;re adding contacts at a dizzying pace, and then your marketing team wants to send some personalized messages and&#8230;whoops, all you have are email addresses. You neglected to push any customer data that could be used to personalize a message; first name, last name, favorite soda, etc.  Whatever data you have gathered from your contacts could potentially be useful in developing a bulk message that seems less bulky.</p>
<p>You know that this data can be imported using a csv file and the import tool in the Bronto web app, but how about with the API?  We talked about adding contacts using version 3 in <a href="http://brontoversity.com/2010/02/18/welcome-friend-adding-new-contacts-using-the-api/">Welcome Friend! Adding New Contacts Using the API</a>, but let&#8217;s look at the <a href="http://app.bronto.com/api/?q=v4_o_view&amp;fn=View&amp;id=4 target="><code>contactObject</code></a> to see how we might use it to add or update contacts with version 4.</p>
<p>Let&#8217;s first look at the fields portion (in bold) of the <a href="http://app.bronto.com/api/?q=v4_f_view&amp;fn=View&amp;id=100" target="_new"><code>addContacts</code></a> SOAP request message below(note: <code>updateContacts</code> uses the same contact object and <code>readContacts</code> returns the same object).</p>
<div style="border: 1px solid; overflow: auto; height: 225px;">
<p>&lt;contacts&gt;<br />
&lt;id&gt;&lt;/id&gt;<br />
&lt;email&gt;&lt;/email&gt;<br />
&lt;status&gt;&lt;/status&gt;<br />
&lt;msgPref&gt;&lt;/msgPref&gt;<br />
&lt;source&gt;&lt;/source&gt;<br />
&lt;customSource&gt;&lt;/customSource&gt;<br />
&lt;created&gt;&lt;/created&gt;<br />
&lt;modified&gt;&lt;/modified&gt;<br />
&lt;deleted&gt;&lt;/deleted&gt;<br />
&lt;listIds&gt;&lt;/listIds&gt;<br />
<strong>&lt;fields&gt;<br />
&lt;fieldId&gt;&lt;/fieldId&gt;<br />
&lt;content&gt;&lt;/content&gt;<br />
&lt;/fields&gt;</strong><br />
&lt;numSends&gt;&lt;/numSends&gt;<br />
&lt;numBounces&gt;&lt;/numBounces&gt;<br />
&lt;numOpens&gt;&lt;/numOpens&gt;<br />
&lt;numClicks&gt;&lt;/numClicks&gt;<br />
&lt;numConversions&gt;&lt;/numConversions&gt;<br />
&lt;conversionAmount&gt;&lt;/conversionAmount&gt;<br />
&lt;/contacts&gt;</p>
</div>
<p>You might never need to actually look at a SOAP message or a WSDL if your IDE/SOAP library takes care of that for you, but it can definitely be helpful when trying to understand how the requests and responses are passed back and forth. Most of the attributes are self descriptive and using them is hopefully straight forward. The fields attribute however takes a little more explaining.</p>
<p>In the WSDL you will see that it is defined as:</p>
<p><code>&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="fields" nillable="true" type="tns:contactField"/&gt;</code></p>
<p>This tells us that the fields item is a group of zero or more <code>contactField objects</code>. In most programming languages, that type of structure would be represented as an array of <code>contactField</code> objects. These <code>contactField</code> objects in turn contain two items; <code>fieldId</code> and <code>content</code>. The <code>content</code> is the actual data that you want to store and the <code>fieldId</code> is a static id that is assigned to each of your fields when they are created. The <code>fieldId</code> can be retrieved using the <a href="http://app.bronto.com/api/?q=v4_f_view&amp;fn=View&amp;id=4"><code>readFields</code></a> function. Since the <code>fieldId</code>s are static, it probably makes sense to go ahead and store these locally so they do not need to be read each time you want to use them. The easiest thing to do is to call <code>readFields</code> once with an empty filter and store the field information in a configuration file. That way, adding or removing fields will not require changes to your code.</p>
<p>With this information in hand, it will hopefully make more sense on how you would go about passing in contact information. So don&#8217;t leave those fields empty any more.</p>
<p><em>Alex Durzy<br />
Support Engineer at Bronto</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/09/29/diy-integrations-ii-updating-contact-field-information-with-direct-update/' rel='bookmark' title='Permanent Link: DIY Integrations II: Updating Contact Field Information With Direct Update'>DIY Integrations II: Updating Contact Field Information With Direct Update</a> <small> Integrating your website or database with a third party...</small></li>
<li><a href='http://brontoversity.com/2010/02/18/welcome-friend-adding-new-contacts-using-the-api/' rel='bookmark' title='Permanent Link: Welcome Friend! Adding New Contacts Using the API'>Welcome Friend! Adding New Contacts Using the API</a> <small> This post only applies to Legacy Version 3 of...</small></li>
<li><a href='http://brontoversity.com/2010/04/23/adding-contacts-to-a-specific-list-with-direct-add/' rel='bookmark' title='Permanent Link: Adding Contacts To A Specific List With Direct Add'>Adding Contacts To A Specific List With Direct Add</a> <small>A few months ago, Lucas Weber wrote a post called...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2010/05/13/personalize-your-contacts-storing-field-data-with-the-api/feed/</wfw:commentRss>
		<slash:comments>0</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>DIY Integrations II: Updating Contact Field Information With Direct Update</title>
		<link>http://brontoversity.com/2009/09/29/diy-integrations-ii-updating-contact-field-information-with-direct-update/</link>
		<comments>http://brontoversity.com/2009/09/29/diy-integrations-ii-updating-contact-field-information-with-direct-update/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 20:31:12 +0000</pubDate>
		<dc:creator>Lucas Weber</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[API Legacy Version 3]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[fields]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=4835</guid>
		<description><![CDATA[
Integrating your website or database with a third party application (like Bronto) can be a pain. It can take hours of expensive development work, and requires in-depth planning and forethought.  Luckily, if you have web programming experience, you can get some basic integrations up and running in a relatively short amount of time.
Our DIY Integrations [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/10/27/abandonment-issues-use-direct-update-to-get-over-them/' rel='bookmark' title='Permanent Link: Abandonment Issues?  Use Direct Update to Get Over Them!'>Abandonment Issues?  Use Direct Update to Get Over Them!</a> <small>In my last post, DIY Integrations II: Direct Update, I...</small></li>
<li><a href='http://brontoversity.com/2009/08/31/diy-integrations-getting-contacts-into-your-account-with-direct-add/' rel='bookmark' title='Permanent Link: DIY Integrations: Getting Contacts Into Your Account With Direct Add'>DIY Integrations: Getting Contacts Into Your Account With Direct Add</a> <small>Integrating your website or database with a third party application...</small></li>
<li><a href='http://brontoversity.com/2010/04/23/adding-contacts-to-a-specific-list-with-direct-add/' rel='bookmark' title='Permanent Link: Adding Contacts To A Specific List With Direct Add'>Adding Contacts To A Specific List With Direct Add</a> <small>A few months ago, Lucas Weber wrote a post called...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2009/09/keyboard_update.jpg"><img class="alignright size-full wp-image-4865" src="http://brontoversity.com/wp-content/uploads/2009/09/keyboard_update.jpg" alt="updates are good!" width="315" height="240" /></a></p>
<p>Integrating your website or database with a third party application (like Bronto) can be a pain. It can take hours of expensive development work, and requires in-depth planning and forethought.  Luckily, if you have <strong>web programming experience</strong>, you can get some basic integrations up and running in a relatively short amount of time.</p>
<p>Our DIY Integrations series will explore how to set up these mini-integrations. In this episode, we’ll be talking about a feature called Direct Update. We won’t be doing a step-by-step walk through here, as every implementation will be a bit different. Rather, this post is more of an overview describing what the feature is and general information on how to implement it.</p>
<h3>Direct Update</h3>
<p>The Direct Update feature enables you to update information in a contact&#8217;s fields whenever they visit a page on your website.  You can add or subtract from numerical values, as well as set any field to a specific value.  This allows you to easily keep contact information up to date without manually importing or updating data.  This feature adds data to your account by calling a specially formatted image tag that contains account-specific parameters.</p>
<p>To get started using Direct Update, you’ll need to enable it in your account. To do this, just go to the <strong>Home tab -&gt; Settings -&gt; Analytics</strong>.   Once you are on the Analytics Settings page, just click the checkbox next to Direct Update, and then click Save at the bottom of the page.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/09/checkbox.jpg" target="_blank"><img class="aligncenter size-full wp-image-4839" src="http://brontoversity.com/wp-content/uploads/2009/09/checkbox.jpg" alt="checkbox" width="480" height="138" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">
<h3>Fields</h3>
<p>In order to specify a field to update, you will need to use the exact spelling of that field as you specified it within the application. You can see a listing of all your contact fields by going to <strong>Contacts-&gt;Fields</strong>. Any field can be updated with Direct Update, but some fields only support certain operations.</p>
<h3>Operations And Values</h3>
<p>There are 4 different operations: <code>set</code>, <code>add</code>, <code>append</code>, and <code>sub</code> (	which is short for subtract). <code>add</code> and <code>sub</code> are only supported by the numerical field types. <code>append</code> allows you to track multiple values without having to create a large number of individual fields. The listing below gives more information about working with the 	different types of fields. Be sure to use only lower case letters for the operators.</p>
<ul>
<li> Number, decimal, and currency fields support the operations of <code>set</code>, <code>add</code>, and 	<code>sub</code>. The value provided may be a positive or negative number.  Decimal values provided operations on a Number field will be rounded accordingly.</li>
<li> Date fields support the <code>set</code> operator. The value must be a date specified in the format you have 	designated for date fields on the Formatting page located at <strong>Home-&gt;Settings-&gt;Formatting</strong>.</li>
<li> Text and Text Area fields only support the <code>set</code> and <code>append</code> operator. The text value that is passed in will need to be url escaped if it contains any special characters such as ?,  &amp;, =, or %.</li>
<li> Checkbox fields only support <code>set</code> with a value of 0 for unchecked and 1 for checked.</li>
<li> Radio button and pull down fields only support <code>set</code>. The value provided must exactly match one of the existing options for a given field &#8211; this means they must have the same spelling, case, and any included spaces.</li>
</ul>
<h3>Possible Uses</h3>
<p><strong>Product Interest</strong></p>
<p>This example updates a field whenever a contact visits the product page for a specific high value product. This allows us to send an email to people who have checked out a product within the last month:</p>
<p><code>field1=productxvisit,set,05/12/2008</code></p>
<p><strong>Purchase Details</strong></p>
<p>Below you can see an example that is used on a purchase confirmation page. Here the contact has made a purchase totaling 129.23, so we add that to the field lifetimevalue. We also update the field lastpurchaseddate to the date of purchase. This one update will give us the ability to segment our contacts based on dollar amount purchased, as well as recency of purchase &#8211; fantastic segments for very targeted mailings!</p>
<p><code>field1=lifetimevalue,add,129.23&amp;field2=lastpurchaseddate,set,12/15/2007</code></p>
<h3>Deconstructing the Direct Update snippet</h3>
<p>Below is an example of a possible Direct Update code snippet:<br />
<code><br />
&lt;img height="0" width="0" border="0" src="http://example.com/ public/?q=direct_update amp;fn=Public_DirectUpdateForm&amp;id=IDSTRING&amp;field1=lifetimevalue,add,129.23 amp;field2=lastpurchasedate,set,09/15/2009"&gt;<br />
</code><br />
The first part of the URL is given to you as part of the code snippet you got from the Direct Update section on the Analytics page.  This is unique to each account and allows the application to identify your account. The next few parameters, <code>q</code>, <code>fn</code>, and <code>id</code> allow us to know how to process the data that is to follow, as well as identify your account. The last bit, <code>field1=lifetimevalue,add,129.23&amp;field2=lastpurchasedate,set,12/15/2007</code> is the actual string that updates the fields. As you can see, all you need to do is define your update pieces and tack them onto the URL provided on the Analytics page.</p>
<p>So that is a simple breakdown on how to maintain up to date contact field information without a lengthy integration process. This method is definitely not for everyone, and does require some experience with web programming. However, with the right know how, Direct Update is a great way to get integrated without fussing with an API.  Are you successfully using the Direct Update feature?  Let us know in the comments!</p>
<p><em>Lucas Weber<br />
Bronto Client Services</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/10/27/abandonment-issues-use-direct-update-to-get-over-them/' rel='bookmark' title='Permanent Link: Abandonment Issues?  Use Direct Update to Get Over Them!'>Abandonment Issues?  Use Direct Update to Get Over Them!</a> <small>In my last post, DIY Integrations II: Direct Update, I...</small></li>
<li><a href='http://brontoversity.com/2009/08/31/diy-integrations-getting-contacts-into-your-account-with-direct-add/' rel='bookmark' title='Permanent Link: DIY Integrations: Getting Contacts Into Your Account With Direct Add'>DIY Integrations: Getting Contacts Into Your Account With Direct Add</a> <small>Integrating your website or database with a third party application...</small></li>
<li><a href='http://brontoversity.com/2010/04/23/adding-contacts-to-a-specific-list-with-direct-add/' rel='bookmark' title='Permanent Link: Adding Contacts To A Specific List With Direct Add'>Adding Contacts To A Specific List With Direct Add</a> <small>A few months ago, Lucas Weber wrote a post called...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/09/29/diy-integrations-ii-updating-contact-field-information-with-direct-update/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Business of Exportation</title>
		<link>http://brontoversity.com/2009/09/17/the-business-of-exportation/</link>
		<comments>http://brontoversity.com/2009/09/17/the-business-of-exportation/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 19:41:17 +0000</pubDate>
		<dc:creator>Frank Chapman</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[email addresses]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[field data]]></category>
		<category><![CDATA[fields]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=4629</guid>
		<description><![CDATA[As you work in Bronto, a need may arise for you to have a file that contains your contacts outside of the application. This file can help with list reconciliation, synchronization with your in-house CRM software, or other administrative tasks. You can use all your contact data, including fields, list membership, last updated timestamps, and [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/08/11/making-the-grade-with-reporting/' rel='bookmark' title='Permanent Link: Making The Grade With Reporting'>Making The Grade With Reporting</a> <small>Remember the days when Mom and Dad used to hound...</small></li>
<li><a href='http://brontoversity.com/2010/01/26/analyzing-a-detailed-tracking-report-in-bronto/' rel='bookmark' title='Permanent Link: Analyzing a Detailed Tracking Report in Bronto'>Analyzing a Detailed Tracking Report in Bronto</a> <small>Whenever a message is sent in Bronto, the results of...</small></li>
<li><a href='http://brontoversity.com/2009/09/22/how-are-you-running-your-campaigns/' rel='bookmark' title='Permanent Link: How Are You Running Your Campaigns?'>How Are You Running Your Campaigns?</a> <small>We all know that viewing the message tracking reports for...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2009/09/export_image.jpg" target="_blank"><img class="alignright size-full wp-image-4666" src="http://brontoversity.com/wp-content/uploads/2009/09/export_image.jpg" alt="Exportation" width="315" height="240" /></a>As you work in Bronto, a need may arise for you to have a file that contains your contacts outside of the application. This file can help with list reconciliation, synchronization with your in-house CRM software, or other administrative tasks. You can use all your contact data, including fields, list membership, last updated timestamps, and message format preferences to generate detailed reports.  The Export function in Bronto can help you easily create these reports.</p>
<p>Here is a demonstration on how you would export all of your inactive contacts in a Bronto account.</p>
<p>First, you will nead to click on the Contacts tab to get to the Contacts Dashboard.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/09/contacts_tab.jpg" target="_blank"><img class="size-full wp-image-4668 aligncenter" src="http://brontoversity.com/wp-content/uploads/2009/09/contacts_tab.jpg" alt="Click the Contacts tab" width="434" height="101" /></a></p>
<p style="text-align: left;"><a href="http://brontoversity.com/wp-content/uploads/2009/09/export_link.jpg"><img class="alignleft size-full wp-image-4672" src="http://brontoversity.com/wp-content/uploads/2009/09/export_link.jpg" alt="export_link" width="130" height="58" /></a>Near the top right of the Contacts dashboard there is an Export link.  Click on this link and you will go to the Export page. Here is what the Export page looks like in Bronto.</p>
<p style="text-align: left;"><a href="http://brontoversity.com/wp-content/uploads/2009/09/export-page.jpg" target="_blank"><img class="aligncenter size-full wp-image-4679" src="http://brontoversity.com/wp-content/uploads/2009/09/export-page.jpg" alt="The Export Page" width="478" height="303" /></a><a href="http://brontoversity.com/wp-content/uploads/2009/09/export_status1.jpg" target="_blank"><img class="alignright size-full wp-image-4683" src="http://brontoversity.com/wp-content/uploads/2009/09/export_status1.jpg" alt="3 Choices for Exportation" width="161" height="152" /></a>There are three sections on this page that you need to be aware of.  The first is the status of the contacts that you are creating the report for. The three choices that you have are Active, Inactive and All.  In this demo we are choosing Inactive.  If you have a question concerning this terminology, please refer to our Brontoversity post &#8211; <a href="http://brontoversity.com/2009/06/23/whats-your-contacts-status/" target="_blank">&#8220;What’s Your Contact’s Status?&#8221; </a>for a complete description.</p>
<p style="text-align: left;">
<p>Below this you will find the &#8220;Choose Fields&#8221; section. In this section you can decide what field information you would like to export for each of the contacts in the report. Notice that there are links that will allow you to choose &#8220;Select All&#8221; or &#8220;Select None&#8221;  easily with one click. <a href="http://brontoversity.com/wp-content/uploads/2009/09/choose_fields.jpg" target="_blank"><img class="aligncenter size-full wp-image-4688" src="http://brontoversity.com/wp-content/uploads/2009/09/choose_fields.jpg" alt="Choose the fields to Export" width="470" height="138" /></a> In this demonstration we are choosing to include the information stored in Bronto for the first and last names of each contact.  It is important to remember that you should only export the field information that you need.  Excess information will only increase file size and may extend the time that you will have to wait for the report to generate.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/09/email_address.jpg" target="_blank"><img style="padding:5px 5px 5px 5px; float:right;" src="http://brontoversity.com/wp-content/uploads/2009/09/email_address.jpg" alt="Enter Email Address here" width="222" height="41" /></a>Your last option on this page is to request email notification that your report has been generated.  If you are exporting a large number of contacts, or fields, it may take the application a few minutes to generate your report.  If this is the case, enter your email address in the box provided and Bronto will send you a message to alert you that the report is ready upon completion.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/09/generate_button.jpg" target="_blank"><img style="padding:5px 5px 5px 5px; float:left;" src="http://brontoversity.com/wp-content/uploads/2009/09/generate_button.jpg" alt="Generate Export Link" width="107" height="43" /></a>Once you have completed adding the criteria for your export, click the Generate link. Bronto will start the background process of creating your report. You will then receive a banner that informs you that the export process has started.  Once you receive this, banner you are free to work in other areas of Bronto as the report is compiled.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/09/notified_when_ready.jpg" target="_blank"><img class="aligncenter size-full wp-image-4705" src="http://brontoversity.com/wp-content/uploads/2009/09/notified_when_ready.jpg" alt="You Will Be Notified When Ready" width="466" height="34" /></a></p>
<p style="text-align: left;">Once you receive notification from Bronto that the report has been generated, you will be able to find it in the &#8220;Recent Reports&#8221; section in the lower right corner of the Home Dashboard.  The report will be in the form of a .CSV file that can be easily opened and edited in most spreadsheet applications.</p>
<p style="text-align: left;">So the next time your boss needs you to provide a list of all of your contacts with their data, you should be able to pull it out of Bronto with ease.  If you have any questions on the Export feature, please leave a comment below or contact Bronto Client Services.</p>
<p style="text-align: left;"><em>Frank Chapman<br />
Bronto Client Services</em></p>
<p style="text-align: left;">


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/08/11/making-the-grade-with-reporting/' rel='bookmark' title='Permanent Link: Making The Grade With Reporting'>Making The Grade With Reporting</a> <small>Remember the days when Mom and Dad used to hound...</small></li>
<li><a href='http://brontoversity.com/2010/01/26/analyzing-a-detailed-tracking-report-in-bronto/' rel='bookmark' title='Permanent Link: Analyzing a Detailed Tracking Report in Bronto'>Analyzing a Detailed Tracking Report in Bronto</a> <small>Whenever a message is sent in Bronto, the results of...</small></li>
<li><a href='http://brontoversity.com/2009/09/22/how-are-you-running-your-campaigns/' rel='bookmark' title='Permanent Link: How Are You Running Your Campaigns?'>How Are You Running Your Campaigns?</a> <small>We all know that viewing the message tracking reports for...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/09/17/the-business-of-exportation/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>
