<?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; new feature</title>
	<atom:link href="http://brontoversity.com/tag/new-feature/feed/" rel="self" type="application/rss+xml" />
	<link>http://brontoversity.com</link>
	<description>Product Education for Bronto's Email Marketing Application</description>
	<lastBuildDate>Tue, 07 Sep 2010 18:07:48 +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>Clear that List using the API v4</title>
		<link>http://brontoversity.com/2010/07/22/clear-that-list-using-the-api-v4/</link>
		<comments>http://brontoversity.com/2010/07/22/clear-that-list-using-the-api-v4/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 19:00:28 +0000</pubDate>
		<dc:creator>Andrew Kanes</dc:creator>
				<category><![CDATA[API Version 4]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[API version 4]]></category>
		<category><![CDATA[new feature]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=8175</guid>
		<description><![CDATA[
Last fall, Alex explained how to Clear Contacts From Lists in v3 of the API. You now have the same ability in v4 API using the clearLists function. All you need to do is specify the list id returned from the addLists or readLists function. After you call clearLists, all your contacts will be removed [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/09/24/spring-cleaning-clearing-contacts-from-lists/' rel='bookmark' title='Permanent Link: Spring Cleaning: Clearing Contacts From Lists'>Spring Cleaning: Clearing Contacts From Lists</a> <small>This post only applies to Legacy Version 3 of the...</small></li>
<li><a href='http://brontoversity.com/2010/08/13/the-pluses-and-minuses/' rel='bookmark' title='Permanent Link: The Pluses And Minuses Of List Management'>The Pluses And Minuses Of List Management</a> <small>What happened to all my lists?!?!? You might be asking...</small></li>
<li><a href='http://brontoversity.com/2010/04/29/create-a-header-without-logging-into-bronto/' rel='bookmark' title='Permanent Link: Create a Header Without Logging into Bronto'>Create a Header Without Logging into Bronto</a> <small>Did you know you can now create headers and footers...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2010/07/carstobecrushed.jpg"><img style="padding: 5px 5px 5px 5px; float: right;" title="carstobecrushed" src="http://brontoversity.com/wp-content/uploads/2010/07/carstobecrushed.jpg" alt="" width="238" height="161" /></a></p>
<p>Last fall, Alex explained how to <a href="http://brontoversity.com/2009/09/24/spring-cleaning-clearing-contacts-from-lists/" target="_blank">Clear Contacts From Lists</a> in v3 of the API. You now have the same ability in v4 API using the <code>clearLists</code> function. All you need to do is specify the list id returned from the <a href="http://app.bronto.com/api/?q=v4_f_view&amp;fn=View&amp;id=102" target="_blank">addLists</a> or <a href="http://app.bronto.com/api/?q=v4_f_view&amp;fn=View&amp;id=6" target="_blank">readLists</a> function. After you call <code>clearLists</code>, all your contacts will be removed from the list, however, they will remain in Bronto.</p>
<p>Here is a sample SOAP message that would clear two lists.</p>
<pre class="brush:[php]">
<div id="_mcePaste">&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v4="http://api.bronto.com/v4"&gt;
   &lt;soapenv:Header&gt;
      &lt;v4:sessionHeader&gt;
         &lt;sessionId&gt;b058d5e0-7cb4-4578-b16f-a4c049079207&lt;/sessionId&gt;
      &lt;/v4:sessionHeader&gt;
   &lt;/soapenv:Header&gt;
   &lt;soapenv:Body&gt;
      &lt;v4:clearLists&gt;
         &lt;list&gt;
            &lt;id&gt;0bbb03ec0000000000000000000000038e93&lt;/id&gt;
         &lt;/list&gt;
         &lt;list&gt;
            &lt;id&gt;0bbb03ec00000000000000000000000390d0&lt;/id&gt;
        &lt;/list&gt;
      &lt;/v4:clearLists&gt;
   &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</div>
</pre>
<p>This PHP script would create a SOAP message like this.</p>
<pre class="brush:[php]">&lt;?php
/**
 * This example will clear two lists of all contacts on those lists.
 * You must edit the code to refer to the list id you wish to clear.
 */

$client = new SoapClient('https://api.bronto.com/v4?wsdl', array('trace' =&gt; 1, 'features' =&gt; SOAP_SINGLE_ELEMENT_ARRAYS));
setlocale(LC_ALL, 'en_US');

try {
        $token = "#####API TOKEN###########";

        print "logging in&lt;br&gt;";
        $sessionId = $client-&gt;login(array('apiToken' =&gt; $token))-&gt;return;

        $session_header = new SoapHeader("http://api.bronto.com/v4",
                           'sessionHeader', array('sessionId' =&gt; $sessionId));
        $client-&gt;__setSoapHeaders(array($session_header));

        $ids = array(array('id' =&gt; '0bbb03ec0000000000000000000000038e93'),
                   array('id' =&gt; '0bbb03ec00000000000000000000000390d0'));

        $res = $client-&gt;clearLists($ids)-&gt;return;

        if ($res-&gt;errors) {
                print "There was a problem clearing your lists:&lt;br&gt;";
                print $res-&gt;results[$res-&gt;errors[0]]-&gt;errorString . "&lt;br&gt;";
        } else {
                print "Lists have been cleared&lt;br&gt;";
        }
} catch (Exception $e) {
        print "uncaught exception\n";
        print_r($e);
}
?&gt;</pre>
<p>Now you are able to quickly and easily clear your lists without having to find everyone on the list. We do suggest you exercise caution when using this function, as there is no rewind button. I hope you find this new functionality useful. Let us know if you have any questions.</p>
<p><span style="font-family: Verdana, sans-serif; line-height: 20px; color: #111111;"><em>Andrew Kanes<br style="padding: 0px; margin: 0px;" />Support Engineer at Bronto</em></span></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/09/24/spring-cleaning-clearing-contacts-from-lists/' rel='bookmark' title='Permanent Link: Spring Cleaning: Clearing Contacts From Lists'>Spring Cleaning: Clearing Contacts From Lists</a> <small>This post only applies to Legacy Version 3 of the...</small></li>
<li><a href='http://brontoversity.com/2010/08/13/the-pluses-and-minuses/' rel='bookmark' title='Permanent Link: The Pluses And Minuses Of List Management'>The Pluses And Minuses Of List Management</a> <small>What happened to all my lists?!?!? You might be asking...</small></li>
<li><a href='http://brontoversity.com/2010/04/29/create-a-header-without-logging-into-bronto/' rel='bookmark' title='Permanent Link: Create a Header Without Logging into Bronto'>Create a Header Without Logging into Bronto</a> <small>Did you know you can now create headers and footers...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2010/07/22/clear-that-list-using-the-api-v4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bronto Introduces Live Chat</title>
		<link>http://brontoversity.com/2010/04/20/bronto-introduces-live-chat/</link>
		<comments>http://brontoversity.com/2010/04/20/bronto-introduces-live-chat/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 17:44:29 +0000</pubDate>
		<dc:creator>Frank Chapman</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[IM]]></category>
		<category><![CDATA[new feature]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=7092</guid>
		<description><![CDATA[
As technology advances, so to do your needs for immediate results. As a user of the world wide web, you have become conditioned to expect your news and social status in real time. We have taken this into consideration and have implemented instant chat as a support option in the Bronto application. We are now available [...]


Related posts:<ol><li><a href='http://brontoversity.com/2010/04/27/advanced-webform-usage/' rel='bookmark' title='Permanent Link: Advanced Webform Usage'>Advanced Webform Usage</a> <small>As a follow up to the blog post on Creating...</small></li>
<li><a href='http://brontoversity.com/2009/09/17/the-business-of-exportation/' rel='bookmark' title='Permanent Link: The Business of Exportation'>The Business of Exportation</a> <small>As you work in Bronto, a need may arise for...</small></li>
<li><a href='http://brontoversity.com/2009/09/15/get-ready-the-bronto-fall-2009-release/' rel='bookmark' title='Permanent Link: Get Ready: The Bronto Fall 2009 Release'>Get Ready: The Bronto Fall 2009 Release</a> <small> You may have noticed Halloween displays at the local...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2010/04/chat-symbols.png" target="_blank"><img class="size-full wp-image-7113 alignright" style="border: 1px solid black;" src="http://brontoversity.com/wp-content/uploads/2010/04/chat-symbols.png" alt="The Universal Chat Symbol" width="149" height="144" /></a></p>
<p>As technology advances, so to do your needs for immediate results. As a user of the world wide web, you have become conditioned to expect your news and social status in real time. We have taken this into consideration and have implemented instant chat as a support option in the Bronto application. We are now available from 8am to 8pm EDT to answer any quick questions you may have right in your browser.</p>
<h3>Where Do You Start</h3>
<p style="text-align: left;">For example, if you are working in the application and have a question concerning navigation, just click the live chat link in the top right hand corner of almost any page. <a href="http://brontoversity.com/wp-content/uploads/2010/04/link_to_chat2.jpg" target="_blank"><img class="aligncenter size-full wp-image-7130" style="border: 1px solid black;" src="http://brontoversity.com/wp-content/uploads/2010/04/link_to_chat2.jpg" alt="Link in Bronto For Live Chat" width="272" height="99" /></a></p>
<p style="text-align: left;">
<p>The Live Chat box will pop up in it&#8217;s own browser window. The application will ask you for a couple of pieces of information. Please enter your name, email address and a short description of your issue. Make sure these fields are accurately entered and click the &#8220;Start Chat&#8221; button.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2010/04/server.iad_.liveperson.net-2010-4-20-10-24.png" target="_blank"><img class="aligncenter size-full wp-image-7101" style="border: 1px solid black;" src="http://brontoversity.com/wp-content/uploads/2010/04/server.iad_.liveperson.net-2010-4-20-10-24.png" alt="Welcome to Live Chat in Bronto" width="366" height="338" /></a></p>
<h3 style="text-align: left;">Start Chatting</h3>
<p style="text-align: left;">You should now be connected to a representative in the Client Services section. You can pose your full question to them and they can assist you with your issue. In the example below, Lucas instructs me on where to upload the images that I wish to use in my message.</p>
<p style="text-align: left;"><a href="http://brontoversity.com/wp-content/uploads/2010/04/server.iad_.liveperson.net-2010-4-20-10-28.png" target="_blank"><img class="aligncenter size-full wp-image-7104" style="border: 1px solid black;" src="http://brontoversity.com/wp-content/uploads/2010/04/server.iad_.liveperson.net-2010-4-20-10-28.png" alt="Here's the Client Services response" width="366" height="322" /></a></p>
<h3 style="text-align: left;">Let&#8217;s Keep It Simple</h3>
<p style="text-align: left;">Please remember we are emphasizing that this chat function is for quick on the go questions. If you have a more in depth issue or a question concerning the API, we suggest that you open a support case from the support link in the top right corner of any page in Bronto. This will assure you priority and a way to track the progress of your issue. If you have any questions on this new feature, please do not hesitate to contact Bronto Client Services.</p>
<p style="text-align: left;"><em>Frank Chapman<br />
Bronto Client Services</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2010/04/27/advanced-webform-usage/' rel='bookmark' title='Permanent Link: Advanced Webform Usage'>Advanced Webform Usage</a> <small>As a follow up to the blog post on Creating...</small></li>
<li><a href='http://brontoversity.com/2009/09/17/the-business-of-exportation/' rel='bookmark' title='Permanent Link: The Business of Exportation'>The Business of Exportation</a> <small>As you work in Bronto, a need may arise for...</small></li>
<li><a href='http://brontoversity.com/2009/09/15/get-ready-the-bronto-fall-2009-release/' rel='bookmark' title='Permanent Link: Get Ready: The Bronto Fall 2009 Release'>Get Ready: The Bronto Fall 2009 Release</a> <small> You may have noticed Halloween displays at the local...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2010/04/20/bronto-introduces-live-chat/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating New Webforms</title>
		<link>http://brontoversity.com/2010/03/30/creating-new-webforms/</link>
		<comments>http://brontoversity.com/2010/03/30/creating-new-webforms/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 17:09:32 +0000</pubDate>
		<dc:creator>Rob Slade</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Product Release]]></category>
		<category><![CDATA[bronto webforms]]></category>
		<category><![CDATA[new feature]]></category>
		<category><![CDATA[new webforms]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=6861</guid>
		<description><![CDATA[Coming soon to a Bronto near you, our new webforms interface! We&#8217;ve redesigned our way of building webforms and I would like to take a few moments to show you some of the basics of how it will look and perform.
In Bronto, we have a link where you can go to preview the new webforms [...]


Related posts:<ol><li><a href='http://brontoversity.com/2010/03/09/getting-comfortable-with-new-webforms/' rel='bookmark' title='Permanent Link: Getting Comfortable With New Webforms'>Getting Comfortable With New Webforms</a> <small>Bronto&#8217;s Spring 2010 Release is finally here, and with it,...</small></li>
<li><a href='http://brontoversity.com/2010/07/20/success-tags/' rel='bookmark' title='Permanent Link: Success! Tags'>Success! Tags</a> <small>We have added in a small feature you may not...</small></li>
<li><a href='http://brontoversity.com/2010/04/13/editing-css-in-new-webforms/' rel='bookmark' title='Permanent Link: Editing CSS in New Webforms'>Editing CSS in New Webforms</a> <small>Using custom CSS in a webform can be a great...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Coming soon to a Bronto near you, our new webforms interface! We&#8217;ve redesigned our way of building webforms and I would like to take a few moments to show you some of the basics of how it will look and perform.</p>
<p>In Bronto, we have a link where you can go to preview the new webforms and start to get a feel for how they work. To access this link, jump into the current webforms area of your account and click on <a href="http://brontoversity.com/wp-content/uploads/2010/03/Learn.jpg"><img src="http://brontoversity.com/wp-content/uploads/2010/03/Learn.jpg" alt="" width="128" height="19" style="float:middle;" /></a>. </p>
<p>On the following screen, click <strong>Take Me To New Webforms</strong>. You should now see our new webforms area. This screen will look very similar to the previous webforms area with a list of the webforms you can edit, as well as the option to create some additional forms. Let&#8217;s take a look at how a contact add webform is created.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2010/03/WebformScreen2.jpg"><img class="alignnone size-full wp-image-6868" src="http://brontoversity.com/wp-content/uploads/2010/03/WebformScreen2.jpg" alt="" width="540" height="299" /></a></p>
<p>As you can see, it now looks very different. However, the new webforms area is designed to be much easier to use, with a more intuitive interface. Each section is now a drag and drop area, so when you create your webform, you will move the elements you want to your webform, and drop them where they need to go. In the left column, you will have the choice of moving rows with 1, 2, or 3 columns into the work area. Below the row selection, you can drag and drop your Fields, Lists, or any Text &amp; HTML you want to be a part of your webform. At the top of the work area, there are some elements you will be required to add, such as the email address field, the submit button, and some optional elements like an email verify field or the Text/HTML preference option checkbox. Below is a screen shot showing the elements you can drag over to the webform work area.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2010/03/Rows.jpg"><img class="alignnone size-full wp-image-6873" src="http://brontoversity.com/wp-content/uploads/2010/03/Rows.jpg" alt="" width="545" height="381" /></a></p>
<p>In the next screen shot, I have dragged a row with two columns and added in the require email address field, submit button, and the fields First Name, Last Name, and City. The Email Address and Submit button are located in one column, and the fields are located in the second column.</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2010/03/listsandfields.jpg"><img class="alignnone size-full wp-image-6877" src="http://brontoversity.com/wp-content/uploads/2010/03/listsandfields.jpg" alt="" width="543" height="369" /></a></p>
<p>Once you have added the elements to your webforms and set them up where they are going to be located, click the <a href="http://brontoversity.com/wp-content/uploads/2010/03/Save.jpg"><img src="http://brontoversity.com/wp-content/uploads/2010/03/Save.jpg" alt="" width="73" height="20" style="float:middle;"/></a> button to save your webform changes. </p>
<p>As you build your webform, you can also preview the layout by clicking the <a href="http://brontoversity.com/wp-content/uploads/2010/03/previewbutton.jpg"><img src="http://brontoversity.com/wp-content/uploads/2010/03/previewbutton.jpg" alt="" width="59" height="22" style="float:middle;" /></a> button located in the upper corner of the webforms page.</p>
<p>More elements of the new webforms will be available in the near future, but hopefully this gives you a quick insight into the way the new webforms are created. I invite you to spend some time trying out and testing some of the new webforms functionality, and please feel free to leave comments on what you think.</p>
<p><em>Rob Slade<br />
Client Support Specialist<br />
Bronto Software.</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2010/03/09/getting-comfortable-with-new-webforms/' rel='bookmark' title='Permanent Link: Getting Comfortable With New Webforms'>Getting Comfortable With New Webforms</a> <small>Bronto&#8217;s Spring 2010 Release is finally here, and with it,...</small></li>
<li><a href='http://brontoversity.com/2010/07/20/success-tags/' rel='bookmark' title='Permanent Link: Success! Tags'>Success! Tags</a> <small>We have added in a small feature you may not...</small></li>
<li><a href='http://brontoversity.com/2010/04/13/editing-css-in-new-webforms/' rel='bookmark' title='Permanent Link: Editing CSS in New Webforms'>Editing CSS in New Webforms</a> <small>Using custom CSS in a webform can be a great...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2010/03/30/creating-new-webforms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Feature Alert &#8211; Segmenting on Relative Dates</title>
		<link>http://brontoversity.com/2009/10/20/new-feature-alert-segmenting-on-relative-dates/</link>
		<comments>http://brontoversity.com/2009/10/20/new-feature-alert-segmenting-on-relative-dates/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 19:05:36 +0000</pubDate>
		<dc:creator>Rob Slade</dc:creator>
				<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Product Release]]></category>
		<category><![CDATA[new feature]]></category>
		<category><![CDATA[new feature in Bronto]]></category>
		<category><![CDATA[relative dates]]></category>
		<category><![CDATA[segment]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=5128</guid>
		<description><![CDATA[Have you ever wanted to create a segment in your Bronto account that allows you to choose contacts based on a relative date? Maybe you have and you didn&#8217;t even know it yet. Segmenting on relative dates is a convenient tool that may be overlooked, so I want to take a moment and explain how [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/12/22/last-minute-holiday-segments/' rel='bookmark' title='Permanent Link: Last Minute Holiday Segments'>Last Minute Holiday Segments</a> <small>With the Holiday season almost here, I wanted to share...</small></li>
<li><a href='http://brontoversity.com/2009/10/01/advanced-segmentation-with-additional-rules-and-criteria/' rel='bookmark' title='Permanent Link: Advanced Segmentation With Additional Rules And Criteria'>Advanced Segmentation With Additional Rules And Criteria</a> <small>In my last post, I looked at the basics of...</small></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://brontoversity.com/wp-content/uploads/2009/10/366165987_5732d3e3e7-1.png" alt="Segment On Relative Dates" title="Segment On Relative Dates" width="317" height="202" style="float:right; padding:5px 5px 5px 5px;"/>Have you ever wanted to create a segment in your Bronto account that allows you to choose contacts based on a relative date? Maybe you have and you didn&#8217;t even know it yet. Segmenting on relative dates is a convenient tool that may be overlooked, so I want to take a moment and explain how it works and what you could potentially use this new feature for.</p>
<p>As mentioned, with our Fall 2009 release, we now support relative dates in segments. This means you can now specify a number and a time frame (hours, days, weeks, months, years,etc) in a segment. The dates being used are relative to the time the segment is processed. For example, lets say you wanted to find any contact in your Bronto account that was created in the last 3 days. The segment may look like this: (Click the image to enlarge)</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/10/3dayssegment1.jpg" target="_new"><img style="float:middle; padding:5px 5px 5px 5px;" src="http://brontoversity.com/wp-content/uploads/2009/10/3dayssegment1.jpg" alt="3dayssegment1" width="533" height="136" /></a></p>
<p>Another example might be to pull a list of contacts that have purchased in the last 30 days. If you are storing a last purchase date as a field in Bronto, you can use the segment builder to build a segment comprised of these contacts. An example could look like this: (Click to the image to enlarge)</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/10/lastpurchase1.jpg" target="_new"><img style="float:middle; padding:5px 5px 5px 5px;" src="http://brontoversity.com/wp-content/uploads/2009/10/lastpurchase1.jpg" alt="lastpurchase1" width="523" height="220" /></a></p>
<p>Obviously, there will be many more uses for this new feature. For more information about segmenting on relative dates, click on the <em>Creating Segments: Detailed Explanation</em> help guide available on the Help For This Page on any of the segment pages in the Bronto application.</p>
<p>We would love to hear how you are implementing this feature in Bronto and what success you are having with it. Leave us a comment and share your thoughts!</p>
<p><em>Rob Slade<br />
Client Support Specialist at Bronto</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/12/22/last-minute-holiday-segments/' rel='bookmark' title='Permanent Link: Last Minute Holiday Segments'>Last Minute Holiday Segments</a> <small>With the Holiday season almost here, I wanted to share...</small></li>
<li><a href='http://brontoversity.com/2009/10/01/advanced-segmentation-with-additional-rules-and-criteria/' rel='bookmark' title='Permanent Link: Advanced Segmentation With Additional Rules And Criteria'>Advanced Segmentation With Additional Rules And Criteria</a> <small>In my last post, I looked at the basics of...</small></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/10/20/new-feature-alert-segmenting-on-relative-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Conversion Info For Your Contacts</title>
		<link>http://brontoversity.com/2008/11/05/more-conversion-info-for-your-contacts/</link>
		<comments>http://brontoversity.com/2008/11/05/more-conversion-info-for-your-contacts/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 16:21:41 +0000</pubDate>
		<dc:creator>Adam Covati</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[conversion tracking]]></category>
		<category><![CDATA[new feature]]></category>

		<guid isPermaLink="false">http://product.bronto.com/?p=30</guid>
		<description><![CDATA[Want to prove ROI on your email marketing program? Who doesn&#8217;t? Well conversion tracking is the way to go, and we&#8217;ve just made it even more powerful.
You may not have noticed, but we have recently added some additional fields to the contact view in the application. If you are tracking conversions within Bronto you will [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/12/17/tis-the-conversion-season/' rel='bookmark' title='Permanent Link: Tis The Conversion Season'>Tis The Conversion Season</a> <small>The holiday season is already upon us, and for many...</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>Want to prove ROI on your email marketing program? Who doesn&#8217;t? Well conversion tracking is the way to go, and we&#8217;ve just made it even more powerful.</p>
<p>You may not have noticed, but we have recently added some additional fields to the contact view in the application. If you are tracking conversions within Bronto you will now be able to see the total number of conversions as well as total conversion value for each contact.</p>
<div style="text-align:center;margin:4 auto"><img class="alignnone size-full wp-image-44" title="New Conversion Data For Contacts" src="http://product.bronto.com/wp-content/uploads/2008/11/new-conversion-columns.png" alt="" width="500" height="90" /></div>
<p>We have also recently added this information to the detailed contact overview. This means that if you look up a specific contact you can see what they were sent, whether or not they opened or click, as well as any conversions they made.</p>
<div style="text-align:center;margin:4 auto"><img class="alignnone size-full wp-image-46" title="Detailed Contact Conversion History" src="http://product.bronto.com/wp-content/uploads/2008/11/detailed-conversion-history.png" alt="Detailed Contact Conversion History" width="550" /></div>
<p>If you aren&#8217;t tracking conversions, I highly recommend it. It&#8217;s very easy to add to your website and provides you with detailed information about how email marketing is affecting your sales.</p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/12/17/tis-the-conversion-season/' rel='bookmark' title='Permanent Link: Tis The Conversion Season'>Tis The Conversion Season</a> <small>The holiday season is already upon us, and for many...</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/2008/11/05/more-conversion-info-for-your-contacts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
