<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.activecampaign.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ActiveCampaign Email Marketing Blog</title>
	
	<link>http://www.activecampaign.com/blog</link>
	<description>Email marketing blog discussing email marketing features, deliverability, new marketing ideas, and more.</description>
	<lastBuildDate>Mon, 16 Jan 2012 19:12:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.activecampaign.com/activecampaign" /><feedburner:info uri="activecampaign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>41.886456</geo:lat><geo:long>-87.623259</geo:long><feedburner:emailServiceId>activecampaign</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Adding or Updating an Existing Subscriber Through the API</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/2yzYxa3icPc/</link>
		<comments>http://www.activecampaign.com/blog/adding-or-updating-an-existing-subscriber-through-the-api/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 19:57:28 +0000</pubDate>
		<dc:creator>Elizabeth</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=3084</guid>
		<description><![CDATA[Our Email Marketing software offers a full featured, easy to use API, with dozens of functions to choose from. Many of our clients have utilized our open API to integration our Email Marketing software with their websites, external databases, and other software applications. Perhaps the most common use of the API is adding new subscribers [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Our Email Marketing software offers a full featured, easy to use API, with dozens of functions to choose from. Many of our clients have utilized our open API to integration our Email Marketing software with their websites, external databases, and other software applications. Perhaps the most common use of the API is adding new subscribers to the system, and updating existing subscribers.</p>
<p>Whenever you need to add a new subscriber to your system through our API, you must follow these steps:</p>
<ol style="font-size: 12px; margin-left: 50px;">
<li>Use <em>subscriber_view_email </em>first, to check and see if a subscriber with the same email address already exists.</li>
<li>If <em>subscriber_view_email </em>returns no response, then use <em>subscriber_add</em> to add a new subscriber.</li>
<li>If <em>subscriber_view_email</em> does return a response, then save the subscriber data that it returns, and use <em>subscriber_edit</em> to edit the existing subscriber while also retaining their original data (lists, fields, etc).</li>
</ol>
<p>This blog post will explain how to check to see if a subscriber exists before adding them, and how to update a pre-existing subscriber.</p>
<h2>Use <em>subscriber_view_email</em> to Fetch Existing Subscriber Details</h2>
<p>Before either adding a new subscriber, or updating an existing subscriber, <strong>you must always check to see if that subscriber exists first, and fetch their existing subscriber details.</strong> This is extremely important! If you attempt to use the <em>subscriber_add</em> function to add a subscriber who already exists in the system, you will receive an error message telling you that duplicate subscribers cannot be added (unless the &#8220;allow duplicate subscriptions&#8221; setting is enabled, which is uncommon). Furthermore, if you attempt to update an existing subscriber without fetching their previous information first, you run the risk of accidentally unsubscribing them to previous lists, or losing custom field data.</p>
<p>To check and see if a subscriber already exists in your system, you can <a title="subscriber_view_email" href="http://www.activecampaign.com/api/example.php?call=subscriber_view_email">use the <em>subscriber_view_email</em> function.</a> This API function only requires that you have the email address of the subscriber, and it will essentially search your database for any record of that email address. If the email address is found, it will return the subscriber ID, name, and all custom fields and lists that the person is subscribed to.</p>
<p>Below is a short example of how you might call the <em>subscriber_view_email</em> function using PHP:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample1.gif"><img class="alignnone size-medium wp-image-3086" title="apiexample1" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample1-300x234.gif" alt="" width="300" height="234" /></a>(click to enlarge)</p>
<p>If the email address you are searching for does not exist in your system already, you would receive a response like this:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample2.gif"><img class="alignnone size-full wp-image-3085" title="apiexample2" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample2.gif" alt="" width="439" height="149" /></a></p>
<p>The result_code would be 0, and the result_message would say &#8220;Nothing is returned.&#8221; If you receive a response like this from the <em>subscriber_view_email </em>function, then the email address you searched for does not exist in the system, and so it is safe for you to <a title="subscriber_add" href="http://www.activecampaign.com/api/example.php?call=subscriber_add" target="_blank">use the subscriber_add function to add them as a new subscriber</a>.</p>
<h2>What if the subscriber already exists?</h2>
<p>If a subscriber with that email address already exists in your system, the same API call from above would return an array containing all of the subscriber&#8217;s data &#8212; their subscriber ID number, name, date subscribed, the list(s) they are subscribed to, and all custom field data. This image shows a portion of the array that would be returned:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample31.gif"><img class="alignnone size-full wp-image-3091" title="apiexample3" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample31.gif" alt="" width="330" height="290" /></a></p>
<p>In this  example, a subscriber with the email address &#8220;test@activecampaign.com&#8221; is subscribed to one list, and the list ID number for that list is 2. This can be seen by looking at the &#8220;lists&#8221; array that is returned within the main array:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample4.gif"><img class="alignnone size-full wp-image-3090" title="apiexample4" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample4.gif" alt="" width="326" height="334" /></a></p>
<p>(Note: The &#8220;listslist&#8221; value, also shown in the above image, will include all list ID numbers for the lists the subscriber is subscribed to, separated by a comma.)</p>
<p>If you scroll down a little further in your API result, you will also see that there are two custom fields &#8212; Birthday, and City. The subscriber has a Birthday value, but does not have a value for the City custom field:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample5.gif"><img class="alignnone size-full wp-image-3092" title="apiexample5" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample5.gif" alt="" width="311" height="461" /></a></p>
<p>In this example, we will add this subscriber to a new list (ID number 3), and we will also add a value for the City field. However, because the subscriber already exists in the system, we cannot simply use <em>subscriber_add</em> &#8212; we must <a title="subscriber_edit" href="http://www.activecampaign.com/api/example.php?call=subscriber_edit" target="_blank">use <em>subscriber_edit</em> to update them</a> while keeping all of their original data intact (subscriptions, fields, etc).</p>
<h2>Updating The Subscriber</h2>
<p>Below is a short, simplified code example that can be added under the <em>subscriber_view_email </em>call that was already shown above. This code example will read the array that is returned from the <em>subscriber_view_email</em> call, determine whether or not an existing subscriber was returned, and then determine whether or not to add a new subscriber, or update an existing subscriber.</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample6.gif"><img class="alignnone size-medium wp-image-3095" title="apiexample6" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample6-273x300.gif" alt="" width="273" height="300" /></a>(click to enlarge)</p>
<p>The above code looks at the result array that was returned from the <em>subscriber_view_email</em> function, and preserves the subscriber&#8217;s existing list subscription data, and existing field data. <strong>It is very important to always use <em>subscriber_view</em> or <em>subscriber_view_email</em> to look up the subscriber&#8217;s existing data before using the<em> subscriber_edit</em> function! </strong>Otherwise, you may accidentally erase custom field data, or accidentally unsubscribe the subscriber from their previous lists.</p>
<p>In this example, the subscriber was already present on the list with an ID of 2, and we needed to add them to list 3. If we did not include the <em>foreach</em> loop starting on line 52 &#8212; which finds all lists the subscriber was already present on and adds that subscription information to the <em>$post</em> array as well &#8212; then the subscriber would have been removed from list 2 when the API call was executed. Similarly, if we did not also include the subscriber&#8217;s previous custom field values in the <em>subscriber_edit</em> call, all of their previous custom field values would have been erased.</p>
<p>(Note that the <em>subscriber_add</em> call was not shown in this example, in order to keep the example short. To see a full example of how to use the <em>subscriber_add</em> function, feel free visit our <a title="API Documentation" href="http://www.activecampaign.com/api" target="_blank">API documentation</a> section of our site.)</p>
<p>When combining the two code examples in this article, and calling the script, you should receive the following result from the <em>susbcriber_edit</em> function, indicating success:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample7.gif"><img class="alignnone size-full wp-image-3096" title="apiexample7" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample7.gif" alt="" width="353" height="179" /></a></p>
<p>You can perform another <em>subscriber_view_email</em> or<em> subscriber_view</em> (which uses the subscriber&#8217;s ID number instead of email address to look them up) call to verify that the list subscriptions and fields were updated properly &#8212; or you can view their subscriber details within the application&#8217;s administrative interface:</p>
<p><a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample8.gif"><img class="alignnone size-full wp-image-3097" title="apiexample8" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/apiexample8.gif" alt="" width="644" height="261" /></a></p>
<h2>Putting It All Together</h2>
<p>If you&#8217;d like to copy and paste the full source code used in this example, with comments included, please <a href="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/update_subscriber_example.zip">click here to download the full example script</a>. (However, keep in mind that it is only a simple example &#8212; login details, subscriber information, and list and custom field ID numbers will need to be changed to suit your needs!) As always, if you have any questions or comments regarding our API, please do not hesitate to <a title="Contact Support" href="https://www.activecampaign.com/support/contact/" target="_blank">contact our support department</a>, and we would be happy to help!</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/2yzYxa3icPc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/adding-or-updating-an-existing-subscriber-through-the-api/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/adding-or-updating-an-existing-subscriber-through-the-api/</feedburner:origLink></item>
		<item>
		<title>Partnership Program for Reselling Hosted Service</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/GafnI-ya8q8/</link>
		<comments>http://www.activecampaign.com/blog/partnership-program-for-reselling-hosted-service/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 18:33:38 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=3050</guid>
		<description><![CDATA[We&#8217;ve recently released a streamlined partnership program for our hosted service. Resellers can now take advantage of an easy-to-use interface for managing their individual hosted accounts, which includes adding and removing accounts, branding each account, and updating your billing profile and available credits. The reseller panel gives you complete control over the email marketing experience [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We&#8217;ve recently released a streamlined partnership program for our hosted service. <a href="http://www.activecampaign.com/features/resell.php">Resellers</a> can now take advantage of an easy-to-use interface for managing their individual hosted accounts, which includes adding and removing accounts, branding each account, and updating your billing profile and available credits.</p>
<p>The reseller panel gives you complete control over the email marketing experience for each of your clients:</p>
<p><img src="http://support.activecampaign.com/bin/image_7533141.jpeg" title="ActiveCampaign reseller program interface" /></p>
<p><img src="http://support.activecampaign.com/bin/image_7755733.jpeg" title="ActiveCampaign reseller program interface" /></p>
<p>Head on over to our help section to learn more about <a href="http://www.activecampaign.com/help/reselling-and-managing-hosted-accounts/">reselling hosted accounts</a> and <a href="http://www.activecampaign.com/help/rebranding-and-customizing-the-software-design/">re-branding the software</a>.</p>
<p>Don&#8217;t forget to <a href="https://www.activecampaign.com/contact/index.php?type=partnerapp">fill out our partner application</a> to get started! Let us know if you have any questions.</p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/GafnI-ya8q8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/partnership-program-for-reselling-hosted-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/partnership-program-for-reselling-hosted-service/</feedburner:origLink></item>
		<item>
		<title>Free Survey Email Template</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/jWtHn1S8Ccw/</link>
		<comments>http://www.activecampaign.com/blog/free-survey-email-template/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 12:00:21 +0000</pubDate>
		<dc:creator>Kosal</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Surveys & Research]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=3035</guid>
		<description><![CDATA[Need to find out how your customer service is going or how your client is perceiving you? Get some valuable feedback from your most loyalest customers with this beautiful blue and grey free survey email template. The bright orange button will surely grab attention as the only focus for a call-to-action. Seeing that businesses can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Need to find out how your customer service is going or how your client is perceiving you? Get some valuable feedback from your most loyalest customers with this beautiful blue and grey free survey <strong><a href="http://www.activecampaign.com/templates/" title="email templates">email template</a></strong>. The bright orange button will surely grab attention as the only focus for a call-to-action. Seeing that businesses can benefit from having a Google Plus page to gain some traction in their organic ranking, we&#8217;ve decided to help you out and included a Google Plus social button at the bottom of the template; get some more followers in your Circle!</p>
<p>As always, head over and download your free copy in our free email template gallery <a href="http://www.activecampaign.com/templates/" title="email templates">here</a>.</p>
<p><a href="http://www.activecampaign.com/templates/"><img src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/survey_email_template.jpg" alt="" title="Survey Email Template" width="510" height="700" class="alignnone size-full wp-image-3038" /></a></p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/jWtHn1S8Ccw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/free-survey-email-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/free-survey-email-template/</feedburner:origLink></item>
		<item>
		<title>Social Sharing Updates</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/rFmMi4WVlKo/</link>
		<comments>http://www.activecampaign.com/blog/social-sharing-updates/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 14:42:41 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Product Updates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2977</guid>
		<description><![CDATA[A couple quick updates regarding social sharing: Link only You can now (additionally) obtain just the link for each social sharing service, instead of just the linked-icon that we provide, so you can apply the link to any text or image in your mailing. For example, %SOCIALSHARE-FACEBOOK% returns this icon, linked-to the Facebook post page: [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>A couple quick updates regarding social sharing:</p>
<h2>Link only</h2>
<p>You can now (additionally) obtain just the link for each social sharing service, instead of just the linked-icon that we provide, so you can apply the link to any text or image in your mailing.</p>
<p>For example, <code>%SOCIALSHARE-FACEBOOK%</code> returns this icon, linked-to the Facebook post page:</p>
<p><img src="http://support.activecampaign.com/bin/image_2266632.jpeg" alt="Social Facebook icon" title="SOCIALSHARE-FACEBOOK personalization tag" /></p>
<p>If you&#8217;d rather use another image, or perhaps just a text link, you can use this alternate personalization tag:</p>
<p><code>%SOCIALSHARE-FACEBOOK-LINK%</code></p>
<p>This will return just the URL, as in this example:</p>
<p><code>http://YOURACCOUNT.activehosted.com/social.php?c=33&#038;m=33&#038;s=76f410bb411339c68d07a4e2ccb16c7a&#038;ref=facebook</code></p>
<p>This immediately redirects to the Facebook post page:</p>
<p><code>http://www.facebook.com/share.php?u=http%3A%2F%2Fbit.ly%2F12345</code></p>
<p>Do this for all other social sharing personalization tags as well. (Just append <code>-LINK</code> to the very end.)</p>
<h2>Google Reader removed</h2>
<p>We&#8217;ve also removed the Google Reader/Buzz share icon as &#8220;Note in Reader&#8221; no longer works, and Buzz no longer exists. In place of this we have included Google+ sharing. You&#8217;ll find the &#8220;Share on Google+&#8221; link in the &#8220;Personalize Message&#8221; window:</p>
<p><img src="http://support.activecampaign.com/bin/image_8767690.jpeg" alt="Screenshot of Personalize Message window" title="Google+ personalization tag" /></p>
<p>The individual personalization tag for Google+ is <code>%SOCIALSHARE-GPLUS%</code>, and of course <code>%SOCIALSHARE-GPLUS-LINK%</code> will work as well.</p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/rFmMi4WVlKo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/social-sharing-updates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/social-sharing-updates/</feedburner:origLink></item>
		<item>
		<title>Free Friday: Blue Cloud Email Template with Background Image for Outlook</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/JUeNPGrsCvE/</link>
		<comments>http://www.activecampaign.com/blog/free-friday-blue-cloud-email-template-background-image-outlook/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:49:03 +0000</pubDate>
		<dc:creator>Kosal</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2988</guid>
		<description><![CDATA[With the arrival of winter we&#8217;ve design this pretty bright blue email template to remind us how much we&#8217;ve already missed summer. With hazy blue clouds and utility poles that give off that hot summer day feel to it, we can only wish that summer isn&#8217;t too far away. We&#8217;ve included a bonus here; this [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>With the arrival of winter we&#8217;ve design this pretty bright blue <strong>email template</strong> to remind us how much we&#8217;ve already missed summer. With hazy blue clouds and utility poles that give off that hot summer day feel to it, we can only wish that summer isn&#8217;t too far away.</p>
<p><a href="http://www.activecampaign.com/templates/"><img src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/blue_cloud_email_template.jpg" alt="" title="blue_cloud_email_template" width="510" height="600" class="alignnone size-full wp-image-3002" /></a></p>
<p>We&#8217;ve included a bonus here; this email template has a background image that is displaying for Outlook 2007 &amp; 2010. Here&#8217;s an old post on how to <a href="http://www.activecampaign.com/blog/free-friday-winter-holiday-email-template-background-image-fix-for-outlook/">add background image in Outlook</a>. I will go into details on how we&#8217;ve accomplished this for this specific template.</p>
<h4>How to Display Background Image in Table Cell</h4>
<p>Include the following code into the &lt;html&gt; tag of your document:</p>
<pre>xmlns:v="urn:schemas-microsoft-com:vml"</pre>
<p><strong>Example:</strong></p>
<pre>&lt;html xmlns:v="urn:schemas-microsoft-com:vml"&gt;</pre>
<p>For this specific template design, we&#8217;re going to want to show the logo over the background image in a table cell &mdash; unlike our <a href="http://www.activecampaign.com/blog/free-friday-winter-holiday-email-template-background-image-fix-for-outlook/">previous post</a> where we wanted the image to show in the background of the body, we&#8217;ll want to show the background only in a certain cell. This method create another problem in Outlook; Outlook will add an unwanted 5 pixel spacing underneath this table cell. To solve this little bug, we&#8217;ll have to specify a height and width using the code below. You must remember to specify the width and the height for both the &lt;v:image&gt; and &lt;v:shape&gt;.</p>
<pre>
...
&lt;td background="images/image_9119314.gif" style="background-image::url('images/image_9119314.gif');"&gt;

	&lt;!--[if gte mso 9]&gt;
	&lt;v:image xmlns:v="urn:schemas-microsoft-com:vml" id="theImage" style='behavior: url(#default#VML); display:inline-block;position:absolute; height:109px; width:600px;top:0;left:0;border:0;z-index:1;' src="images/image_9119314.gif"/&gt;
	&lt;v:shape xmlns:v="urn:schemas-microsoft-com:vml" id="theText" style='behavior: url(#default#VML); display:inline-block;position:absolute; height:109px; width:600px;top:-5;left:-10;border:0;z-index:2;'&gt;
	&lt;div&gt;
	&lt;![endif]--&gt;

		&lt;table&gt;
		INSERT OVERLAY TEXT OR IMAGE HERE
		&lt;/table&gt;

	&lt;!--[if gte mso 9]&gt;
	&lt;/div&gt;
	&lt;/v:shape&gt;
	&lt;![endif]--&gt;

&lt;/td&gt;
...
</pre>
<p>For this specific email template, the logo (or text) that we want to display over the background image would be contained within the table (or paragraph tags) that is wrapped around using the &lt;v:image&gt; and &lt;v:shape&gt; tags. So remember, the only thing that needs to change in the above code is your height and your width.</p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/JUeNPGrsCvE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/free-friday-blue-cloud-email-template-background-image-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/free-friday-blue-cloud-email-template-background-image-outlook/</feedburner:origLink></item>
		<item>
		<title>Free Friday: Warm and Grity Worn-Out Email Template</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/Xcv3Nc4oeV0/</link>
		<comments>http://www.activecampaign.com/blog/free-friday-warm-grity-worn-out-email-template/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 19:46:08 +0000</pubDate>
		<dc:creator>Kosal</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2959</guid>
		<description><![CDATA[For our typical Friday template release we&#8217;re offering a unique template design perfectly coded for businesses offering e-commerce, blogging, travel, education and services. This unique newsletter template shows off a worn-out, grungy design with bold beautiful yellow and brown colors that really stands out over the softer beige in the background. Download your copy by [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>For our typical Friday template release we&#8217;re offering a unique template design perfectly coded for businesses offering e-commerce, blogging, travel, education and services. This unique <a href="http://www.activecampaign.com/templates/" title="newsletter template">newsletter template</a> shows off a worn-out, grungy design with bold beautiful yellow and brown colors that really stands out over the softer beige in the background. Download your copy by clicking on the template image below:</p>
<p><a href="http://www.activecampaign.com/templates/" title="newsletter template"><img src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/xplore_large.jpg" alt="" title="Explore Email Template" width="510" height="620" class="size-full wp-image-2970" /></a></p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/Xcv3Nc4oeV0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/free-friday-warm-grity-worn-out-email-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/free-friday-warm-grity-worn-out-email-template/</feedburner:origLink></item>
		<item>
		<title>Free Friday: Winter Holiday Email Template &amp; Background Image Fix for Outlook</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/Nk5Zf0FUOgo/</link>
		<comments>http://www.activecampaign.com/blog/free-friday-winter-holiday-email-template-background-image-fix-for-outlook/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 23:30:34 +0000</pubDate>
		<dc:creator>Kosal</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2890</guid>
		<description><![CDATA[We’re back from Thanksgiving with a Free Friday blog featuring two free email templates. With Christmas just a few weeks away and winter is already here, we&#8217;re proud to release our first winter holiday-related template for 2011. Send your customer a thank you message or simply wish them a happy holiday with a free coupon [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We’re back from Thanksgiving with a Free Friday blog featuring two <a title="free email templates" href="http://www.activecampaign.com/templates/"><strong>free email templates</strong></a>.</p>
<p>With Christmas just a few weeks away and winter is already here, we&#8217;re proud to release our first winter holiday-related template for 2011. Send your customer a thank you message or simply wish them a happy holiday with a free coupon gift illustration in this beautiful template drenched in deep winter blue featuring a cozy and warm snowman.</p>
<p><a href="http://www.activecampaign.com/templates/"><img class="size-full wp-image-2893" title="snowman_greeting_email_template" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/snowman_greeting_email_template.jpg" alt="" width="510" height="600" /></a></p>
<p>This orange and black template consist of a video screen capture and different orange hues to show that &#8220;pop&#8221;. There are very small details making this template a must-have with detailed patterns behind the logo with sharp colors and edges ready to impress your client.</p>
<p><a href="http://www.activecampaign.com/templates/"><img class="alignnone size-full wp-image-2897" title="acme_orange_email_template" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/acme_orange_email_template.jpg" alt="" width="510" height="600" /></a></p>
<p>The template also feature a repeated background image that works in all major email client including Gmail, Hotmail, Yahoo, Outlook 2007 and 2010. It&#8217;s not a pretty fix by any means but it gets the job done.</p>
<p>Start by including this code to the &lt;html&gt; tag of your document:</p>
<pre>xmlns:v="urn:schemas-microsoft-com:vml"</pre>
<p>Example:</p>
<pre>&lt;html xmlns:v="urn:schemas-microsoft-com:vml"&gt;</pre>
<p>To get a repeated background image to display in Outlook 2007 and 2010, simply include this piece of code right after the &lt;body&gt; tag:</p>
<pre>&lt;!--[if gte mso 9]&gt;
&lt;v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t"&gt;
&lt;v:fill type="tile" src="http://www/url/to/your/background/image/file/for/outlook.jpg" /&gt;
&lt;/v:background&gt;
&lt;![endif]--&gt;</pre>
<p>One issue here is that if you needed a background to repeat horizontally &#8211; as with this template &#8211; Outlook 2007 does not support the CSS background-repeat. Since we&#8217;re applying a background to the body of the email, we&#8217;ve created a seperate background image that has a big enough width and height so it shows fully in Outlook.</p>
<p>To have a repeated background image to show for all of the other email client, simply include this code into the body section of your template, perferablly after the &lt;body&gt; tag.</p>
<pre>&lt;style type="text/css" media="screen"&gt;
background-image:url('http://www/url/to/your/background/image/file.jpg');
background-repeat:repeat-x no-repeat;
background-position:top left;
background-color:#eeae00;
&lt;/style&gt;</pre>
<p>Here&#8217;s what the full code should look like:</p>
<pre>
&lt;html xmlns:v="urn:schemas-microsoft-com:vml"&gt;
&lt;head&gt;
...
&lt;/head&gt;
&lt;body&gt;
&lt;style type="text/css" media="screen"&gt;
background-image:url('http://www/url/to/your/background/image/file.jpg');
background-repeat:repeat-x no-repeat;
background-position:top left;
background-color:#eeae00;
&lt;/style&gt;

&lt;!--[if gte mso 9]&gt;
&lt;v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t"&gt;
&lt;v:fill type="tile" src="http://www/url/to/your/background/image/file/for/outlook.jpg" /&gt;
&lt;/v:background&gt;
&lt;![endif]--&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Unfortunately during the time of this template release, we were unable to figure out a fix for the padding issues only seen in Outlook 2007 and 2010.</p>
<p><img src="http://www.activecampaign.com/blog/wp-content/uploads/2011/12/outlook_top_padding_template.jpg" alt="" title="outlook_top_padding_template" width="422" height="72" class="size-full wp-image-2913" /></p>
<p>Regardless, we hope you enjoy these free email templates as much as we enjoy making them.</p>
<p>Do you know of a fix for the padding issue in Outlook or a better work around to displaying repeated background images in Outlook? Please share with our community and post your solution in the comment.</p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/Nk5Zf0FUOgo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/free-friday-winter-holiday-email-template-background-image-fix-for-outlook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/free-friday-winter-holiday-email-template-background-image-fix-for-outlook/</feedburner:origLink></item>
		<item>
		<title>Improved Integration with Shopify and Unbounce</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/cJn1Sq6ld1c/</link>
		<comments>http://www.activecampaign.com/blog/improved-integration-with-shopify-and-unbounce/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 17:47:11 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Product Updates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2873</guid>
		<description><![CDATA[Our Shopify and Unbounce integrations have been improved to allow the ability to map more fields into ActiveCampaign. They initially allowed only name and email address to be saved (from your Shopify checkout page, or Unbounce landing page), but now you can choose to map additional fields as well. Just visit the External Services section [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Our <a href="http://www.activecampaign.com/shopify/">Shopify</a> and <a href="http://www.activecampaign.com/unbounce/">Unbounce</a> integrations have been improved to allow the ability to map more fields into ActiveCampaign. They initially allowed only name and email address to be saved (from your Shopify checkout page, or Unbounce landing page), but now you can choose to map additional fields as well.</p>
<p>Just visit the External Services section of ActiveCampaign, and edit either Shopify or Unbounce. Here you can set up your mappings:</p>
<p><img title="Map additional Shopify fields to ActiveCampaign" src="http://support.activecampaign.com/bin/image_9182859.jpeg" alt="Screenshot of Shopify integration with ActiveCampaign" /></p>
<p><img title="Map additional Unbounce fields to ActiveCampaign" src="http://support.activecampaign.com/bin/image_7718132.jpeg" alt="Screenshot of Unbounce integration with ActiveCampaign" /></p>
<p><img title="Map additional Unbounce fields to ActiveCampaign" src="http://support.activecampaign.com/bin/image_9443306.jpeg" alt="Screenshot of Shopify form" /></p>
<p>This means more subscriber data coming across for smarter list segmenting and campaign targeting. We plan to include this feature for Wufoo (and future services as well).</p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/cJn1Sq6ld1c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/improved-integration-with-shopify-and-unbounce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/improved-integration-with-shopify-and-unbounce/</feedburner:origLink></item>
		<item>
		<title>Free Friday… err, Wednesday Free Email Template</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/mWbUmPimzDs/</link>
		<comments>http://www.activecampaign.com/blog/free-friday-err-wednesday-free-email-template/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 21:15:01 +0000</pubDate>
		<dc:creator>Kosal</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2863</guid>
		<description><![CDATA[Today we&#8217;re releasing an email template ahead of Friday since ActiveCampaign will be close for the Thanksgiving holiday. Our email template today feature a nice clean white look with a hint of blue. This template is perfectly fitted for companies offering service, great for the every day freelance designers and content publishers looking to send [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Today we&#8217;re releasing an email template ahead of Friday since ActiveCampaign will be close for the Thanksgiving holiday. Our email template today feature a nice clean white look with a hint of blue. This template is perfectly fitted for companies offering service, great for the every day freelance designers and content publishers looking to send out regular blog updates. As always, you can download your own copy at in our <strong><a title="email templates" href="http://www.activecampaign.com/templates/">email templates</a></strong> gallery. For your convenience, we&#8217;ve included a Photoshop file, XML for easy import into the ActiveCampaign email console and personalization tag.</p>
<p>Have a happy and wonderful Thanksgiving everyone!</p>
<p><a href="http://www.activecampaign.com/templates/"><img class="size-full wp-image-2867" title="Bookkeepr Free Template" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/11/bookkeepr-email-template.jpg" alt="" width="510" height="620" /></a></p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/mWbUmPimzDs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/free-friday-err-wednesday-free-email-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/free-friday-err-wednesday-free-email-template/</feedburner:origLink></item>
		<item>
		<title>Free Friday: Delicious Email Template</title>
		<link>http://feeds.activecampaign.com/~r/activecampaign/~3/oUNDX5irkBk/</link>
		<comments>http://www.activecampaign.com/blog/free-friday-delicious-email-template/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 13:00:08 +0000</pubDate>
		<dc:creator>Kosal</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/?p=2848</guid>
		<description><![CDATA[It&#8217;s Friday&#8230; who&#8217;s hungry? We&#8217;ve cooked up this delicious email template packed with savory goodness for your creative taste buds. Included is a XML file for convenience so you can import this template design right into your campaign. Also included is a PSD Photoshop file for those wanting to make color and button changes. Personalization [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>It&#8217;s Friday&#8230; who&#8217;s hungry? We&#8217;ve cooked up this delicious email template packed with savory goodness for your creative taste buds. Included is a XML file for convenience so you can import this template design right into your campaign. Also included is a PSD Photoshop file for those wanting to make color and button changes. Personalization tags are included for Facebook and Twitter. Head over to our <strong><a title="Email Templates" href="http://www.activecampaign.com/templates/">email templates</a></strong> gallery and download a copy.</p>
<p><a href="http://www.activecampaign.com/templates/"><img class="size-full wp-image-2849" title="Eatery Template" src="http://www.activecampaign.com/blog/wp-content/uploads/2011/11/eatery.jpg" alt="" width="510" height="620" /></a></p>
<img src="http://feeds.feedburner.com/~r/activecampaign/~4/oUNDX5irkBk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/free-friday-delicious-email-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.activecampaign.com/blog/free-friday-delicious-email-template/</feedburner:origLink></item>
	</channel>
</rss>

