<?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>Loopfuse Marketing Automation Blog - The Mouth of the Funnel &#187; eMail Marketing</title>
	<atom:link href="http://www.loopfuse.com/blog/tag/email-marketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.loopfuse.com/blog</link>
	<description>Sales and Marketing Automation</description>
	<lastBuildDate>Fri, 04 May 2012 18:22:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tips for Better HTML Email Design</title>
		<link>http://www.loopfuse.com/blog/2011/07/11/tips-for-better-html-email-design/</link>
		<comments>http://www.loopfuse.com/blog/2011/07/11/tips-for-better-html-email-design/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 12:16:00 +0000</pubDate>
		<dc:creator>Richard Murdock</dc:creator>
				<category><![CDATA[eMail Marketing]]></category>

		<guid isPermaLink="false">http://www.loopfuse.com/blog/?p=2319</guid>
		<description><![CDATA[This post will be about designing the HTML layout of your email campaigns. For most of the web designers out there, I feel your pain when it comes to designing HTML for email. It’s so much easier and more flexible to use CSS rather than older HTML methods. Unfortunately the email client world has not [...]]]></description>
			<content:encoded><![CDATA[<p>This post will be about designing the HTML layout of your email campaigns. For most of the web designers out there, I feel your pain when it comes to designing HTML for email. It’s so much easier and more flexible to use CSS rather than older HTML methods. Unfortunately the email client world has not moved on much from the 1990’s and that means that new developers that have always coded in CSS must learn the coding methods of yesteryear and produce HTML that will work in those clients. So here are a few tips when tackling email campaign layout.<span id="more-2319"></span></p>
<h3>Keep the layout simple</h3>
<p>Email layouts should be simple and direct. You can still communicate quite a lot of information with a simple approach and it will help in creating HTML code that is cross-platform compatible. The three row table (header, body, footer) with nested tables and content within is a good start.<br />
<img class="aligncenter size-full wp-image-2308" title="example_layout" src="http://www.loopfuse.com/blog/wp-content/uploads/2011/07/example_layout.jpg" alt="" width="400" height="215" /></p>
<h3>Use tables</h3>
<p>Email clients do not handle CSS very well. They especially have a hard time with DIVs for layout. That means that it’s time to dust off the old HTML books – or take the modern approach and look it up online. I’d suggest <a href="http://w3schools.com/" target="_blank">http://w3schools.com/</a> for brushing up on your table layout code. They have “Try it Yourself” buttons in each section that you see how code will look in the browser you are using. You may need to use some spacing cells to get things just the way you want them. Experiment until you have it right.</p>
<h3>Set widths on cells</h3>
<p>You will be relying on cell widths to align columns of text. You can use percentages if you don’t have a lot of images in the email, but they may look strange if scaled improperly. Be specific like this:</p>
<blockquote><p>&lt;td width=”200”&gt;<br />
&lt;p&gt;Information Here&lt;/p&gt;<br />
&lt;/td&gt;</p></blockquote>
<h3>Keep the overall width under control</h3>
<p>Try to keep the body of your email to no larger than 500-600 pixels wide. Keep in mind what people will be using to preview your email. A lot of consumers will see your email in a preview pane with just a couple of lines visible before they click on it. If that space is taken up by large images or irrelevant information they may not even open it. People are increasingly using their smartphones to access email on the go. Although I love my Android phone, the viewable area is much smaller than my desktop monitor.</p>
<h3>Smart use of CSS</h3>
<p>Again, CSS is not your best friend in email templates. Never attach it to the &lt;body&gt; tag. Do not try to link to external style sheets. If you do so, many email clients will strip it out before delivering it to the Inbox (*cough* Google *cough*) and that will simply destroy your layout. You can use it sparingly inline like this:</p>
<blockquote><p>&lt;table style=”font-size: 12px; font-family:Arial, Helvetica, sans-serif”&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;h1 style=”color:#000099”&gt;Title text&lt;/h1&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p></blockquote>
<p>Most email clients should have no problems with inline styling. If you do see problems in your testing, go back to early HTML formatting:<br />
&lt;font size=&#8221;5&#8243; face=&#8221;arial&#8221; color=&#8221;red&#8221;&gt;Sample Text&lt;/font&gt;</p>
<h3>Actual size images</h3>
<p>Some email clients will stretch your image just like a web page and others will completely ignore the stretching rules. The only way to avoid this issue is to use images that are exactly the right size. This is where having a simple layout will play to your advantage. If you have a complicated layout with graphics stretching across table cells, you may have to slice them up just right.<br />
There is some debate on whether you should explicitly set the width and height of you images. One problem with doing this is that you risk having gaps in your email while images are blocked. If you’re OK with that, then go ahead and set them, but just be aware.<br />
<a href="http://www.loopfuse.com/blog/wp-content/uploads/2011/07/image_stretch.jpg"><img class="size-full wp-image-2305 alignnone" title="image_stretch" src="http://www.loopfuse.com/blog/wp-content/uploads/2011/07/image_stretch.jpg" alt="" width="556" height="149" /></a></p>
<h3>Don’t embed video</h3>
<p>Don’t do it. There are only a couple of email clients that can play video from within, and even then only if it’s in a certain format. If you need to promote a video use a still frame image and link that over to wherever you have it hosted (or on a landing page). This may change as HTML5 picks up and more clients can handle that coding but, for now, you might want to take a more simple approach.</p>
<h3>Background Images</h3>
<p>Background images are another sticky problem. I would suggest that you avoid use of background images wherever possible because of formatting issues in certain email clients. Outlook 2007 simply won’t load them. If you must use them, background colors or images must be assigned to the cell of the table and then width/height of the cell set explicitly. Even then you need to have content that will fill the height correctly.</p>
<h3>Use Alt text for images</h3>
<p>It’s generally a good idea to use Alt text for images in web pages and it’s useful in email campaigns as well. If people have blocked images they can still get information that may be interesting to them and prompt them to turn on images for further details.<br />
An example might be a coupon image that promotes 50% off a product and alt text that states “Save money with this coupon”. It’s enough to get the person to turn on images to see what the exact deal is. The side benefit of this is that it will also count as an email open at that point. Blocked images prevent the tracking of email opens.</p>
<h3>Use clean HTML code</h3>
<p>Close your &lt;li&gt; and &lt;p&gt; tags. Spammers are sloppy. Don’t be a spammer.</p>
<h3>Test, test, test</h3>
<p>I can’t stress this enough. Test your email in several clients such as Thunderbird and Outlook. Make sure it looks good in Gmail, Hotmail, and Yahoo. Test those clients in several browsers such as IE, Firefox, Safari, and Opera. Unfortunately, Outlook 2007 and 2010 took a great leap *<strong>backward</strong>* by using Word as their HTML rendering engine rather than Internet Explorer. This caused all sorts of compatibility issues with HTML display for those clients.</p>
<p>As long as you design for the lowest common denominator, you should be able to reach most email clients without a lot of extra workaround code. Keeping the layout simple will also help you focus your message. Be aware of how much space you have to capture a customer’s attention in their email client and use that to your advantage.</p>
<p>There are several places on the web that you can find free email templates, or even pay for some nicer ones. Here are a few examples I found when Googling about:</p>
<ul>
<li>HTML Email Gallery &#8211; <a href="http://www.htmlemailgallery.com/">http://www.htmlemailgallery.com/</a></li>
<li>CampaignMonitor free downloads &#8211; <a href="http://www.campaignmonitor.com/templates/">http://www.campaignmonitor.com/templates/</a></li>
<li>Template Zone &#8211; <a href="http://www.templatezone.com/">http://www.templatezone.com</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.loopfuse.com/blog/2011/07/11/tips-for-better-html-email-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2011 Marketing Automation Survey Results Are In!</title>
		<link>http://www.loopfuse.com/blog/2011/06/02/2011-marketing-automation-survey-results-are-in/</link>
		<comments>http://www.loopfuse.com/blog/2011/06/02/2011-marketing-automation-survey-results-are-in/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 19:53:03 +0000</pubDate>
		<dc:creator>srentner</dc:creator>
				<category><![CDATA[Marketing Automation]]></category>
		<category><![CDATA[Thought Leadership]]></category>
		<category><![CDATA[B2B Marketing]]></category>
		<category><![CDATA[Customer Acquisition]]></category>
		<category><![CDATA[Demand Generation]]></category>
		<category><![CDATA[eMail Marketing]]></category>
		<category><![CDATA[Inbound Marketing]]></category>
		<category><![CDATA[Lead Management]]></category>
		<category><![CDATA[lead nurturing]]></category>
		<category><![CDATA[LoopFuse]]></category>
		<category><![CDATA[SMB Lead Capture]]></category>

		<guid isPermaLink="false">http://www.loopfuse.com/blog/?p=2241</guid>
		<description><![CDATA[As part of our ongoing effort to deliver educational and useful marketing automation technology tools that help drive revenue at SMBs, we launched the 2011 Marketing Automation survey.  The online survey was promoted via social networking sites and email to sales and marketing professionals. More than 400 professionals responded.
Here&#8217;s a quick look at some [...]]]></description>
			<content:encoded><![CDATA[<p>As part of our ongoing effort to deliver educational and useful <a href="http://en.wikipedia.org/wiki/Marketing_automation" target="_blank">marketing automation</a> technology tools that help drive revenue at SMBs, we launched the 2011 Marketing Automation survey.  The online survey was promoted via social networking sites and email to sales and marketing professionals. More than 400 professionals responded.</p>
<p>Here&#8217;s a quick look at some of the results:</p>
<ul>
<li> Better quality leads is the most important benefit of marketing automation among respondents, followed closely by a better understanding of prospect behavior and a higher volume of leads overall.</li>
<li><a href="http://www.loopfuse.com/product/email-marketing.php" target="_blank">Email Marketing</a> tops the list of the most widely used marketing automation features, followed closely by Web <a href="http://www.loopfuse.com/product/lead-capture.php" target="_blank">Lead Capture</a>.</li>
<li>High cost of marketing automation software cited as the top barrier to adoption.</li>
<li>Social Media Monitoring and Campaign ROI Reporting are top priorities for 2011.</li>
<li>The benefits and strong ROI from <a href="http://www.loopfuse.com/product/lead-scoring.php" target="_blank">Lead Scoring</a> are not yet being widely realized by marketing organizations.</li>
</ul>
<p>We are also pleased to announce the recipient of the $500 gift card, awarded for filling out the survey: David Burget, from Omaha, Neb.</p>
<p>His favorite Marketing Automation feature: Inbound Marketing. His company uses marketing automation to determine &#8220;which companies have  visited the site.&#8221; According to David, the sales team  &#8220;loves the ability to pinpoint return visits&#8221; and they use that information as talking points during sales calls.</p>
<p>Want to see more of the results? Download the <a href="http://www.loopfuse.com/resources/best-regform-ma-survey.php" target="_blank">2011 Marketing Automation survey report.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.loopfuse.com/blog/2011/06/02/2011-marketing-automation-survey-results-are-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arrival of LoopFuse OneView 3.31</title>
		<link>http://www.loopfuse.com/blog/2011/05/14/arrival-of-loopfuse-oneview-3-31/</link>
		<comments>http://www.loopfuse.com/blog/2011/05/14/arrival-of-loopfuse-oneview-3-31/#comments</comments>
		<pubDate>Sat, 14 May 2011 13:00:50 +0000</pubDate>
		<dc:creator>Tom Elrod</dc:creator>
				<category><![CDATA[Lead Capture]]></category>
		<category><![CDATA[LoopFuse]]></category>
		<category><![CDATA[OneView]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[eMail Marketing]]></category>
		<category><![CDATA[Inbound Marketing]]></category>
		<category><![CDATA[Lead Management]]></category>
		<category><![CDATA[Lead Management Automation]]></category>
		<category><![CDATA[Marketing Automation]]></category>
		<category><![CDATA[product release]]></category>
		<category><![CDATA[product update]]></category>
		<category><![CDATA[Salesforce.com Integration]]></category>

		<guid isPermaLink="false">http://www.loopfuse.com/blog/?p=2132</guid>
		<description><![CDATA[May 15th marks the release of LooFuse OneView v3.31.  This new release focuses on expanded integration for web form hosting and inbound marketing, along with enhanced international support for our global users.
Wufoo Integration

Wufoo is a free online service that provides a simple and attractive way to build and host web forms. Wufoo features can include [...]]]></description>
			<content:encoded><![CDATA[<p>May 15th marks the release of LooFuse OneView v3.31.  This new release focuses on expanded integration for web form hosting and inbound marketing, along with enhanced international support for our global users.</p>
<h3>Wufoo Integration</h3>
<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2011/05/wufoo_dashboard52.png"><img class="size-full wp-image-2137 alignright" title="wufoo_logo" src="http://www.loopfuse.com/blog/wp-content/uploads/2011/05/wufoo_dashboard52.png" alt="wufoo_logo" width="129" height="119" /></a></p>
<p><a title="Wufoo" href="http://www.wufoo.com" target="_blank">Wufoo</a> is a free online service that provides a simple and attractive way to build and <strong>host web forms</strong>. Wufoo features can include field data validation, user prompts,  customized HTML, and a host of other goodies that would normally require  a programmer to implement.</p>
<p>With the addition of the LoopFuse <a title="LoopFuse Wufoo integration" href="https://help.loopfuse.com/View.jsp?procRevId=01ab4f5fe33b4e1b3955c228ed92a13f" target="_blank">integration</a> to Wufoo forms, users will be able to automatically capture these form submissions within their LoopFuse account while still maintaining all the other tracking data for prospects, such as page views.</p>
<h3>International Character Support</h3>
<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2011/05/international_dashboard.png"><img class="size-full wp-image-2141 alignright" title="international_support" src="http://www.loopfuse.com/blog/wp-content/uploads/2011/05/international_dashboard.png" alt="international_support" width="128" height="105" /></a>The world is getting smaller and marketers need to be able to communicate on a global level.  This, along with our increasing international user base, has led to the full support of the <a title="UTF-8 specification" href="http://www.ietf.org/rfc/rfc3629.txt" target="_blank">UTF-8</a> character set within all aspects of LoopFuse, including  <a title="Lead Capture" href="http://www.loopfuse.com/product/lead-capture.php" target="_blank">lead capture</a>, <a title="List Management" href="http://www.loopfuse.com/product/lead-management.php" target="_blank">list import</a>,  <a title="Email Marketing" href="http://www.loopfuse.com/product/email-marketing.php" target="_blank">email campaigns</a>, <a title="CRM Integration" href="http://www.loopfuse.com/product/crm-integration.php" target="_blank">CRM export</a> and <a title="Marketing Reports" href="http://www.loopfuse.com/product/marketing-reporting.php" target="_blank">reporting</a>.  LoopFuse now  supports over 650 languages.</p>
<h3>Extension of Inbound Marketing to the CRM</h3>
<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2011/05/inbound_sfdc.gif"><img class="alignright size-full wp-image-2155" title="inbound_sfdc" src="http://www.loopfuse.com/blog/wp-content/uploads/2011/05/inbound_sfdc.gif" alt="inbound_sfdc" width="123" height="84" /></a>Last year we added <a title="Inbound Marketing" href="http://www.loopfuse.com/product/inbound-marketing.php" target="_blank">Inbound Marketing / Search Engine Marketing</a> to our <a title="LoopFuse features" href="http://www.loopfuse.com/features.php" target="_blank">feature set,</a> which enables marketers to analyze which referring sites, search engines, and keywords are leading to the highest level of lead capture form conversions.  Within this release, we are extending this functionality to the CRM by passing along data, such as referring site and search keywords, to the CRM lead and contact records.  This, in turn, provides more information to the sales team and the ability to generate more comprehensive reports from within the CRM.</p>
<p>Special thanks to our customers for submitting these and other feature requests via the <a title="LoopFuse Community" href="http://help.loopfuse.com" target="_blank">LoopFuse Community</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.loopfuse.com/blog/2011/05/14/arrival-of-loopfuse-oneview-3-31/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Things to Think about Before Hitting the Send Button</title>
		<link>http://www.loopfuse.com/blog/2010/09/21/5-things-to-think-about-before-hitting-the-send-button/</link>
		<comments>http://www.loopfuse.com/blog/2010/09/21/5-things-to-think-about-before-hitting-the-send-button/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 14:55:18 +0000</pubDate>
		<dc:creator>Cindy Ryan</dc:creator>
				<category><![CDATA[LoopFuse]]></category>
		<category><![CDATA[eMail Marketing]]></category>

		<guid isPermaLink="false">http://www.loopfuse.com/blog/?p=976</guid>
		<description><![CDATA[There are a variety of different emails that I send out through LoopFuse OneView on a monthly basis. With a freemium offering of our product, the volume of inbound leads we receive has increased substantially making it more important to nurture these prospects through email marketing. I have emails that have been created and built [...]]]></description>
			<content:encoded><![CDATA[<p>There are a variety of different emails that I send out through LoopFuse OneView on a monthly basis. With a freemium offering of our product, the volume of inbound leads we receive has increased substantially making it more important to nurture these prospects through email marketing. I have emails that have been created and built into leadflows so that my existing database of users feel the LoopFuse love and we continue to educate them on the best practices within the product. In addition, there are prospects that we reach out to through <a href="http://www.loopfuse.com/product/email-marketing.php">email marketing</a> to help educate them on marketing automation and the benefits of utilizing such a tool.</p>
<p>No matter what type of email I am crafting, I always run down a checklist of 5 things before I click the “Send” button. Because once that button has been pressed – there is no going back.</p>
<p><span id="more-976"></span></p>
<p><strong>1.</strong> I want to make sure my call-to-action is compelling enough for the list of prospects I am targeting. Did I create content that is relevant to my target audience? Is there a call-to-action? Remember who your audience is before sending any email out. Is this a prospect list of C-level people or IT management? Customer or prospect? A technical whitepaper may be appealing to your IT friends but few CEOs will find the time or have the interest in this type of material. Read through your message one more time – make sure you have put something in the subject line that will grab your audience’s attention and make them click-thru.</p>
<p><strong>2.</strong> I double-check that my personalized fields are pulling accurate data. The personalization feature in our email marketing tool is pretty powerful. I can add lead information directly from my CRM and populate it into an email campaign I am sending. Or I can pull contact information from an existing list in Loopfuse like a tradeshow attendee list. I think it is nice to add a personal touch to an email but you have to know your list and the accuracy of the fields you are pulling from. I used a list from a recent tradeshow where we had gathered information through a lead retrieval machine. The way that the conference had collected information was First Name/Middle Initial in the First Name column. If I would have sent an email using the personalization feature for the first name it would look unprofessional – “Hi Cindy C.” Always check your list for contact information accuracy. In addition, did you set your “<a href="https://help.loopfuse.com/View.jsp?procId=64169e8401e427011eb3f681d701ed8c&amp;from=SearchAll_10">personalization defaults</a>?” This will prevent any of the personalized fields you have entered from appearing blank.  Instead of Hi “blank” your recipient would see Hi &#8220;valued customer.&#8221;</p>
<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/2010-09-15_22173.png"><img class="alignnone size-full wp-image-1057" title="2010-09-15_2217" src="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/2010-09-15_22173.png" alt="" width="612" height="279" /></a></p>
<p><strong>3.</strong> I read through my email and do everything possible to decrease my chances of looking like spam to my target list. First, make sure your unsubscribe link is functional and looks good. In Loopfuse, you have the ability to customize the link so that you are not just ending an email with some bold, black link at the bottom of the page. Let’s be honest, as a marketing or sales person you sometimes wish that unsubscribe link was not there. So I take the time to incorporate the link into the overall design of my email template. Now it is an integrated part of my email design and can even look like you personally added it similar to your signature. Second, have a read through my message and avoided any “spam” terms; for instance, do I have the word “free” scribbled throughout the text. And lastly, have I utilized the <a href="https://help.loopfuse.com/View.jsp?procId=306e50c1b66d36b23e22b8c72d7ed73b">Auto-Authentication</a> feature in our product. New to Loopfuse, using this feature lets the receiving email server know that the email is coming from “Loopfuse”, on behalf of “you” making your email look less spammy.</p>
<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/2010-09-15_22183.png"><img class="alignnone size-full wp-image-1058" title="2010-09-15_2218" src="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/2010-09-15_22183.png" alt="" width="763" height="92" /></a></p>
<p><strong>4.</strong> I send a test email. I cannot stress the testing enough. And Loopfuse makes it really easy with its new user interface to send test emails as you create your content. You just type in up to 10 email addresses straight from the campaign wizard and hit send. This gives you the ability to send your email to multiple email addresses and test the appearance within the different email clients. For example, when I test my campaigns I test to my @loopfuse, @yahoo and @gmail addresses. This allows me to see how my HTML renders in each client. Not only do you need relevant content in your email but you want them to look professional – no misspellings or weird characters added into the message.</p>
<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/2010-09-15_22212.png"><img class="alignnone size-full wp-image-1059" title="2010-09-15_2221" src="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/2010-09-15_22212.png" alt="" width="742" height="122" /></a></p>
<p><strong>5.</strong> I schedule my email campaign for a future date or build a lead flow that will send it out based on the prospect&#8217;s activity. Avoid sending emails to prospects too frequently. The last thing you want is a hot prospect to be turned off because he has received 5 emails from you in one week. Make sure you check to see how recently your list of prospects has been emailed. I avoid this issue by building leadflows for my prospects which automatically sends out emails over a certain time period – not too often but often enough to stay relevant.</p>
<p>Until next time…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.loopfuse.com/blog/2010/09/21/5-things-to-think-about-before-hitting-the-send-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marketing Automation Buyer&#039;s Guide to Email Deliverability</title>
		<link>http://www.loopfuse.com/blog/2010/09/15/marketing-automation-buyers-guide-to-email-deliverability/</link>
		<comments>http://www.loopfuse.com/blog/2010/09/15/marketing-automation-buyers-guide-to-email-deliverability/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 15:00:16 +0000</pubDate>
		<dc:creator>Roy Russo</dc:creator>
				<category><![CDATA[Buyer's Guide]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Marketing Automation]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[eMail Marketing]]></category>
		<category><![CDATA[Demand Generation]]></category>
		<category><![CDATA[email deliverability]]></category>

		<guid isPermaLink="false">http://www.loopfuse.com/blog/?p=886</guid>
		<description><![CDATA[Email Deliverability is a hot-topic today as marketers seek to fine-tune their outbound messaging and engage customers with mass email campaigns and lead nurturing programs. Before making a purchase decision for a marketing automation platform, buyers should know the basics of email deliverability, as it will have a direct impact on the success or failure [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/Mail3.png"><img class="alignleft size-full wp-image-894" style="margin: 5px 10px;" title="Email Deliverability" src="http://www.loopfuse.com/blog/wp-content/uploads/2010/09/Mail3.png" alt="Email Deliverability" width="128" height="128" /></a>Email Deliverability is a hot-topic today as marketers seek to fine-tune their outbound messaging and engage customers with mass email campaigns and lead nurturing programs. Before making a purchase decision for a marketing automation platform, buyers should know the basics of email deliverability, as it will have a direct impact on the success or failure of their marketing programs and ROI.</p>
<p>The list below is composed of technology and usability items that we believe are a base-line for achieving increased deliverablity rates from your email marketing campaigns.</p>
<p><span id="more-886"></span></p>
<ul>
<li><strong>IP Segmentation</strong> : Eliminating the techno-babble and simplifying this a bit&#8230; buyers should verify that a vendor is sending from more than one server. <em>Why?</em> If just one customer sends SPAM from that <em>one</em> server, every customer will be negatively affected, because in the eye of the blacklist-gods, you all look the same (because you share the same IP address). Most vendors provide groups of IP addresses that they routinely monitor and additionally segment high-volume or high-paying customers in certain groups. IP Segmentation and IP management by your vendor are <strong>the</strong> most important factor in email deliverability. If a vendor looks confused when you ask them about these concepts&#8230; run!</li>
<li><strong>Auto-Authentication</strong> : Many email marketing vendors today offer a built-in method to &#8220;auto-authenticate&#8221; your email messages as they are sent from their systems. Authentication lets the receiving email server know that the email is coming from <em>&#8220;LoopFuse&#8221;</em>, on behalf of &#8220;you&#8221;. By doing this, your email appears less  suspect to email spam filters, because the email headers are not altered  as though the email originated from a different source (something that  spammers normally do). This is a great way to increase email deliverability&#8230; some vendors automatically enforce this, and other leave it optional. Keep in mind, that how your email will &#8220;look&#8221; to a recipient will change, <a href="https://help.loopfuse.com/View.jsp?procId=306e50c1b66d36b23e22b8c72d7ed73b" target="_blank">read more</a>.</li>
<li><strong>Opt-Out Enforcement</strong> : The <a href="http://www.ftc.gov/bcp/edu/pubs/business/ecommerce/bus61.shtm" target="_blank">CAN-SPAM Act of 2003</a> makes it unlawful for an email sender to not include a mechanism for a recipient to unsubscribe from future mailings. Verify that your marketing automation vendor has some measures in place to force opt-out links or other means for recipients to unsubscribe.</li>
<li><strong>SPAM and Abuse Policy : </strong>A missing or laissez-faire SPAM or email abuse policy is a signal of impending doom for your email marketing programs. If your marketing automation vendor does not enforce good email sending best practices, you can count the minutes until every email server the vendor has will be blacklisted and so will your email marketing programs.<strong> </strong></li>
<li><strong>Email Blacklist Monitoring</strong> : Vendors normally subscribe to third-party blacklist monitoring solutions which enable them to monitor which of their IP addresses have been blacklisted and quickly remove that IP address from the available group of sending IPs. It is difficult to verify whether a vendor is actively monitoring blacklists and taking appropriate steps, but in any event, the question should be put to the vendors.</li>
<li><strong>Email Abuse Handling</strong> : Verify that your marketing automation vendor offers some method for recipients to report email abuse. Marketers may not want to be reported, but look at it this way&#8230; it is better that your vendors be alerted to a spam complaint than a blacklist be alerted. <img src='http://www.loopfuse.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  An email abuse page will typically consist of a short form, much like <a href="http://loopfuse.com/support/report-abuse.php" target="_blank">this one</a>, where a recipient can go to file a report.</li>
</ul>
<h3>Still with me?</h3>
<p>Good. <strong>Now for the dirty little secret most marketers don&#8217;t know</strong>&#8230; every vendor gets blacklisted at some point by some random blacklist somewhere in the random universe (or multiverse, for you Stephen Hawking fans). Getting blacklisted is not an issue of &#8220;if&#8221;, but &#8220;when&#8221;. The important things to ask yourself as a buyer is, &#8220;Does this vendor have plans and resources in place to react to a blacklist-event?&#8221;. Hopefully this short article will lead you on your way to asking the right set of questions and choosing the vendor that&#8217;s right for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.loopfuse.com/blog/2010/09/15/marketing-automation-buyers-guide-to-email-deliverability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webinar: Launching your first email campaign and viewing analytics</title>
		<link>http://www.loopfuse.com/blog/2010/09/13/webinar-launching-your-first-email-campaign-and-viewing-analytics/</link>
		<comments>http://www.loopfuse.com/blog/2010/09/13/webinar-launching-your-first-email-campaign-and-viewing-analytics/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 17:36:00 +0000</pubDate>
		<dc:creator>Cindy Ryan</dc:creator>
				<category><![CDATA[OneView]]></category>
		<category><![CDATA[Webinars]]></category>
		<category><![CDATA[eMail Marketing]]></category>

		<guid isPermaLink="false">http://www.loopfuse.com/blog/?p=932</guid>
		<description><![CDATA[Live Webinar: Thursday September 16th, 2010 11am PDT/2pm EDT
Join us for the launch of our new webinar series &#8220;Light the Fuse.&#8221; This series is intended to provide you, the LoopFuse user, valuable tips and tricks on how to use LoopFuse to grow your business.
First on the agenda: Launching your first email campaign and viewing analytics
How [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://www2.gotomeeting.com/register/777077722">Live Webinar: Thursday September 16th, 2010 11am PDT/2pm EDT</a></p>
<p>Join us for the launch of our new webinar series &#8220;Light the Fuse.&#8221; This series is intended to provide you, the LoopFuse user, valuable tips and tricks on how to use LoopFuse to grow your business.</p>
<p>First on the agenda: Launching your first email campaign and viewing analytics</p>
<p>How will this help grow my business?</p>
<p>Email marketing is an effective way to nurture your existing database of prospects. By continuing to email relevant content about your product or service you are reminding them of the value you can bring to their business. Email marketing can help you start turning your most valued prospects into paying customers.</p>
<p>You will learn how to:</p>
<p>• Create and send great looking email campaigns.<br />
• Personalize emails using CRM contact information.<br />
• Schedule email marketing campaigns for delivery.<br />
• Track and Analyze email response metrics.<br />
• Track email activity in your CRM</p>
<p><a href="https://www2.gotomeeting.com/register/777077722">Click here to register for the webinar.</a></p>
<p><em>Get FUSED!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.loopfuse.com/blog/2010/09/13/webinar-launching-your-first-email-campaign-and-viewing-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

