<?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>MailChimp Email Marketing Blog &#187; Deliverability</title> <atom:link href="http://blog.mailchimp.com/category/deliverability/feed/" rel="self" type="application/rss+xml" /><link>http://blog.mailchimp.com</link> <description>MailChimp, email marketing, and monkeys!</description> <lastBuildDate>Wed, 08 Feb 2012 23:04:08 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Delivery Speed, Part 2</title><link>http://blog.mailchimp.com/delivery-speed-part-2/</link> <comments>http://blog.mailchimp.com/delivery-speed-part-2/#comments</comments> <pubDate>Tue, 26 Jul 2011 16:14:33 +0000</pubDate> <dc:creator>Matthew</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[speed]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=14305</guid> <description><![CDATA[In my last post, I talked about how quickly email moves through our IPs.  To get the data, I focused on our shared IP pool and basically ignored all of our Dedicated IP users.  Today is going to be different.  Today we&#8217;re looking under the hood to see the cool tweaks and updates the Developers [...]]]></description> <content:encoded><![CDATA[<p>In my <a href="http://blog.mailchimp.com/delivery-speed-part-1/" target="_blank">last post</a>, I talked about how quickly email moves through our IPs.  To get the data, I focused on our shared IP pool and basically ignored all of our <a href="http://blog.mailchimp.com/should-you-send-from-a-dedicated-ip-address/" target="_blank">Dedicated IP</a> users.  Today is going to be different.  Today we&#8217;re looking under the hood to see the cool tweaks and updates the Developers have been working on.  These changes impact every single MailChimp user, but those of you with <a href="http://blog.mailchimp.com/can-mailchimp-handle-my-large-list/" target="_blank">large lists</a> will want to pay special attention.</p><p>Before a campaign can go out, before it even hits the queues, our system has to build it.  Build what?  Doesn&#8217;t the user build the campaign?  Well, I guess I&#8217;d say the user <a href="http://blog.mailchimp.com/33-new-email-templates/" target="_blank">designs</a> the campaign. It&#8217;s our job to write all the <a href="http://kb.mailchimp.com/article/how-do-i-find-my-email-headers/" target="_blank">headers</a>, define all the <a href="http://kb.mailchimp.com/article/all-the-merge-tags-cheatsheet" target="_blank">merge tags</a>, and package all kinds of related info into a huge data payload so your awesome content can get to its final destination.</p><p><span id="more-14305"></span></p><h3>The Payload</h3><p>If your list has a hundred thousand subscribers, building that payload can be a significant task.  To keep things simple, we&#8217;ve always built the whole thing at once before sending it on.  That way, we could easily track whether a campaign had gone out or not.  Yes the payload was built and went out, or no it didn&#8217;t.  Unfortunately, for users with sizable lists, that meant waiting for the entire payload to build before sending the first email.  Booooo!</p><p>When users click the &#8220;send&#8221; button, they kind of expect the campaign to start sending.  After all, they didn&#8217;t click the &#8220;build my campaign&#8221; button.  That&#8217;s why we&#8217;ve started chunking the payloads.  For those with huge lists, we build multiple payloads in chunks of ten thousand.  Each chunk gets moving immediately, so your campaign can start going out sooner.  The process does involve extra checks and balances on our part, but the results are pretty cool. We&#8217;ve supercharged your large campaigns.</p><h3>The Validation</h3><p>Okay, so we&#8217;ve built the payload chunk, and everything looks good.  Of course, we&#8217;re not done yet.  It&#8217;s not enough to create the payload, we have to make sure the payload is appropriate.  I&#8217;m talking about really naughty stuff here, like non-unicode characters.</p><p>I believe I mentioned before that the payload is, among other things, a huge list of headers and merge labels.  I&#8217;m talking about the all the customized unsubscribe links, first names, time zones, and all kinds of stuff.  All this data has to be in the correct format, with the correct character encoding, and blah blah blah.  The number of ways to break a system are exhaustive, and the number of ways to send email without breaking anything are limited.</p><p>Let&#8217;s just say our developers have streamlined the myriad little checks and validations.  I&#8217;d go into detail, but the intricacies of PHP extensions are not a journey I want to explore right now.  In short, MailChimp is faster.  A LOT faster!</p><h3>The Routing</h3><p>Okay, all the merge tags line up, and all the headers are perfect, but the work&#8217;s not done yet.  We still have to get your campaign to the right IPs.  The router does the work of actually dividing the payload and sending all the various parts to the best possible starting point.</p><p>The upgrades we made here fall into the &#8220;simple but profound&#8221; category.  The Router grabs a payload chunk and splits it up.  Each chunk actually contains &#8220;hints&#8221; at where every subscriber should go.  For dedicated IP users, it&#8217;s their dedicated IP.  For shared IP users, it indicates the IP reputation that would best match the subscriber activity.  We call it a &#8220;hint&#8221; because the Router has the final word here.  If worse comes to worst and your dedicated IP isn&#8217;t available or that perfect IP is full, the Router can override the &#8220;hint&#8221; and still get your campaign moving.</p><p>To do all of that, the Router has to parse the payload.  Well, it turns out one of our Developers came up with a brilliant C extension to speed that up.  Yeah, it was that easy.</p><h3>The Math</h3><p>The Router also has to keep track of what&#8217;s been sent.  This is important because some ISPs impose hourly maximums.  That means, they don&#8217;t want to see more than x number of emails per IP per hour.  If we go over those rates, we&#8217;re basically throwing your emails away, and no one wants that.</p><p>In order to stay under these rates, the Router has to ping a database that keeps track of IP stats.  Even if this ping takes 1 millisecond, it would take almost 3 hours to do it ten million times.  Realistically, we were pinging the database a lot more than that, and even with parallel processing, it wastes time.  One of our developers had a brilliant idea to to pull the data in batches.  What used to take almost 3 hours now takes about 10 seconds.  You&#8217;ve got to love that.</p><p>The truth is, we&#8217;re always looking for ways to make MailChimp more lovable.  Sometimes that&#8217;s with <a href="http://shirts.mailchimp.com/" target="_blank">shirts</a> and <a href="http://www.flickr.com/groups/1607442@N22/" target="_blank">hats</a>, but more often it&#8217;s the peeps behind the scenes pushing for updates to speed, reliability, and whatever else they can think of.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/delivery-speed-part-2/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>Chimp Charts Are Here!</title><link>http://blog.mailchimp.com/chimp-charts-are-here/</link> <comments>http://blog.mailchimp.com/chimp-charts-are-here/#comments</comments> <pubDate>Mon, 25 Jul 2011 19:34:59 +0000</pubDate> <dc:creator>Leif</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category> <category><![CDATA[Using MailChimp]]></category> <category><![CDATA[research]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=14260</guid> <description><![CDATA[So, the Chimp Charts are here! You could just skim the page and see a bunch of charts, but if you look very, very closely you&#8217;ll see valuable information to help you better understand how to engage your subscribers and track your newsletters. You can even mouse over the chart for detailed performance. So let&#8217;s [...]]]></description> <content:encoded><![CDATA[<p align="LEFT">So, the Chimp Charts are here! You could just skim the page and see a bunch of charts, but if you look very, <em>very </em>closely you&#8217;ll see valuable information to help you better understand how to engage your subscribers and track your newsletters. You can even mouse over the chart for detailed performance.</p><p>So let&#8217;s take a <a title="Chimp Charts" href="http://mailchimp.com/resources/research/" target="_blank">look</a>. The first two charts in our &#8220;Quick Insights&#8221; shows the email opens based on <em>time of day</em> and <em>day in the week</em>. The &#8216;y&#8217; axis displays the percentage of opens on our tested data. This is an average per campaign rate and what the campaign can expect. It may look simple, but it&#8217;s very useful. (Scratching head) “So, what you&#8217;re telling me is Thursday around 3 pm is an awesome time to send my Morning Coffee Newsletter?” Not really. Keep in mind that you should use this data as a reference. You certainly don&#8217;t want to send your Morning Coffee Newsletter at 3 pm. That would be silly, but then again&#8230;some of us need a little afternoon pick me up.</p><p><span id="more-14260"></span></p><p>(click on the images for a closer look)</p><p style="text-align: center;"><a href="http://blog.mailchimp.com/wp-content/uploads/2011/07/image_2blog1.png"><img class="aligncenter size-medium wp-image-14277" title="image_2blog" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/image_2blog1-500x212.png" alt="" width="500" height="212" /></a></p><p style="text-align: center;"><a href="http://blog.mailchimp.com/wp-content/uploads/2011/07/Image_1blog.png"><img class="aligncenter size-medium wp-image-14276" title="Image_1blog" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Image_1blog-500x237.png" alt="" width="500" height="237" /></a></p><p>&nbsp;</p><p>Well, how can I <em>really</em> use this then? Say for instance you don&#8217;t send a Morning Coffee Newsletter and you normally send your campaign out at 10 pm. We encourage you to try something new and <a title="set up a time warp campaign" href="http://kb.mailchimp.com/article/what-is-time-warp-and-how-do-i-use-it/" target="_blank">set up a Time Warp</a> campaign and set it for example, at 3 pm. Or even <a title="create an A/B split campaign" href="http://kb.mailchimp.com/article/how-do-i-create-an-a-b-split-campaign" target="_blank">create an A/B split campaign</a>  based on your different campaign delivery times. See how it works for you. Ultimately, you want to send your campaigns where you see fit but, you may come to find that based on your industry, A/B split test results, or time warp campaign, that a different delivery time works better for your campaigns.</p><p>Next on the menu is “The Effects of Subscriber Recency on Open /Click Rates.” Recency is a fancy word for: occurring right before the present. So, when your subscribers sign up for a newsletter they are likely to be more engaged from the start. Again the &#8216;y&#8217; axis presents the percentage of opens across our tested data. You might think its a bit odd to see a dwindling of engagement as time goes on however, dependent upon your industry and what type of campaigns you send, you can <a title="subscriber engagement half life" href="http://blog.mailchimp.com/subscriber-engagement-half-life/" target="_blank">fine tune that engagement</a>. If you start experiencing depleting engagement, it may be time to consider <a title="how to reactivate inactive subscribers" href="http://blog.mailchimp.com/how-to-reactivate-inactive-subscribers/" target="_blank">reengaging your subscribers</a>.<em><br /> </em></p><p style="text-align: center;"><a href="http://blog.mailchimp.com/wp-content/uploads/2011/07/image_3blog.png"><img class="aligncenter size-medium wp-image-14278" title="image_3blog" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/image_3blog-500x210.png" alt="" width="500" height="210" /></a></p><p>Last but not least is the “Effects of Number of Links in Email on Click Rate.”<br /> The &#8216;y&#8217; axis presents the percentage of click rates across our tested data. As this graph shows, the more links you have, the more clicks you are likely to have. This is true, but remember it&#8217;s not always the case and could effect your engagement. We advise that the links are relevant and pertain to your campaign content. It is also important to minimize the use of shortened links and check for misspellings. If you use URL shortening, have a look <a href="http://kb.mailchimp.com/article/shortening-links-in-your-campaigns/" target="_blank">here</a><em>.</em>  A healthy balance of links and general campaign content is always good. So don&#8217;t overload your subscribers with hundreds of links, as they may eventually stop opening emails in fear of a “total link assault.”</p><p style="text-align: center;"><a href="http://blog.mailchimp.com/wp-content/uploads/2011/07/image_4blog.png"><img class="aligncenter size-medium wp-image-14279" title="image_4blog" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/image_4blog-500x212.png" alt="" width="500" height="212" /></a></p><p>All in all, we want to provide you with rough benchmarks of our performance and what you can expect from your campaigns. Every data point should work symbiotic with each other to achieve optimal campaign performance. What you send matters to you and to MailChimp, which is why we created Chimp Charts. Now off to eat some banana bread!</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/chimp-charts-are-here/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Delivery Speed, Part 1</title><link>http://blog.mailchimp.com/delivery-speed-part-1/</link> <comments>http://blog.mailchimp.com/delivery-speed-part-1/#comments</comments> <pubDate>Mon, 25 Jul 2011 14:47:40 +0000</pubDate> <dc:creator>Matthew</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[Stats]]></category> <category><![CDATA[isp]]></category> <category><![CDATA[speed]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=14216</guid> <description><![CDATA[Over the past year, I’ve seen MailChimp grow and grow. Along with all our new users, it seems like we see bigger and bigger lists every month.  In terms of email volume, our current daily average is now higher than our daily peak was one year ago.  To keep up with this explosion, we’re warming [...]]]></description> <content:encoded><![CDATA[<p>Over the past year, I’ve seen MailChimp grow and grow. Along with all our new users, it seems like we see bigger and bigger lists every month.  In terms of email volume, our current daily average is now higher than our daily peak was one year ago.  To keep up with this explosion, we’re warming up new IPs which means more queues and more connections for our users.  Instead of asking everyone to deal with longer wait times, we’re actually trying to speed things up.</p><p>That leads to a very interesting question… How are we doing?  After sifting through 500 or so IPs and crunching the numbers on over a quarter of a billion emails, I might have an answer.  There are graphs with colored lines and all kinds of explanations below, but within my data set one thing is true.  75% of the emails we receive are delivered within 5 minutes or less.  That’s pretty cool.</p><p><span id="more-14216"></span></p><h3>Begin Technical Babble</h3><p>Before I throw the charts at you, it might help if we went over a few basics of how MailChimp delivery works.  When you send a campaign, your list is divided up and distributed amongst our shared IP pool.  Each IP has a FIFO queue for outbound emails, and the size of these queues directly affects your delivery time.</p><p>Clearly, we should divide your list evenly amongst all our IPs.  That would give us the fastest delivery time for sure.  Yep, it sure would.  It’d be really fast.  Are you getting the feeling we don’t do that?  Good, now let me explain why it isn’t the best solution.</p><p>At this stage, your campaign looks a lot like a highway.  One of the things we like to do is match your subscriber&#8217;s activity rating with the reputation of our IP.  We&#8217;re putting your best subscribers in the fast lane so they have the best possible chance for a successful delivery.  Of course, this means we can’t divide your list evenly.</p><p>If you&#8217;re wondering why we don&#8217;t send your campaign over all of our IPs, I have a simple answer.  “Hell is other people.”  I’m pretty sure Sartre would approve of me borrowing that phrase.</p><p>You see, every now and then we get a bad apple.  Sometimes it’s accidental and sometimes it’s malicious, but these rogue apples can get our IPs <a href="http://kb.mailchimp.com/article/what-are-blacklists/" target="_blank">blocked</a>.  By optimizing the number of IPs that any one campaign touches, we protect all of our users from the odd mushy apple.</p><h3>More Complicated</h3><p>This is where the highway analogy starts to get out of control.  Not only is your list divided among several IPs, but each IP has a separate connection for every receiving domain in its queue.  The receiving domain is the ISP your subscriber uses, like @gmail.com or @hotmail.com.  <a href="http://mailchimp.com/features/segmentation/" target="_blank">It’s worth taking a look at your list and noting which domains you send to the most</a>.</p><p>The good news is that these connections can all send concurrently.  Of course, the ISPs themselves often throttle incoming email to their own preference.  You’ll notice in the charts below that one ISP in particular throttles heavily.</p><p>So it&#8217;s like there are different highways, but the lanes are kind of… No, it&#8217;s like each ISP is a different car manufacturer, and the speed limit is…  Okay, maybe if we all had flying cars and the toll booth was like a filter … Ugh, I honestly can&#8217;t think of a good way to picture this.  Feel free to make suggestions.</p><p>On top of all that mess, you&#8217;re not the only one sending a campaign.  Your emails are being queued along with everyone else who just hit the send button.  We do everything we can to minimize the queues, but there are certain times of day when our volume is off the chain.  It’ll make you think twice about the <a href="http://kb.mailchimp.com/article/can-i-schedule-a-campaign/" target="_blank">&#8220;schedule delivery&#8221;</a> feature.</p><h3>Actual Data</h3><p>I took two weeks of data from our pool of shared IPs and added them up by hour.  The first chart shows the volume of emails we sent.  You can see our heaviest hours are between 9am and noon (EST), but from experience, that range shifts back an hour depending on the time of year.</p><p>The next few charts measure the time interval between when an email was queued and when it was accepted for delivery by the email provider.  Keep that last part in mind.  It takes two to deliver.  We send the email to the ISP, and they deliver it to your subscriber.  The first part I can measure.  The second part is anyone’s guess.</p><p>You can see that 85% of the emails queued between 10:00am and 10:59am were sent within 5 minutes of being queued.  For Yahoo, it took 45 minutes to deliver the next 10% (looking at the 95% graph).  To send the next 4.5% (looking at the 95.5% graph) of Yahoo emails took a whopping 285 minutes.  Yikes!</p><p><a href="http://blog.mailchimp.com/delivery-speed-part-1/delivery-delta-volume/" rel="attachment wp-att-14217"><img class="size-medium wp-image-14217" title="Email Volume per Hour" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Delivery-Delta-Volume-477x300.png" alt="MailChimp Email Volume per Hour" width="477" height="300" /></a></p><p><a href="http://blog.mailchimp.com/delivery-speed-part-1/delivery-delta-75/" rel="attachment wp-att-14218"><img class="size-medium wp-image-14218" title="Time to Send 75% of Emails Received (per Hour)" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Delivery-Delta-75-477x300.png" alt="Time to Send 75% of Emails Received (per Hour)" width="477" height="300" /></a></p><p><a href="http://blog.mailchimp.com/delivery-speed-part-1/delivery-delta-85/" rel="attachment wp-att-14219"><img class="size-medium wp-image-14219" title="Time to Send 85% of Emails Received (per Hour)" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Delivery-Delta-85-489x300.png" alt="Time to Send 85% of Emails Received (per Hour)" width="489" height="300" /></a></p><p><a href="http://blog.mailchimp.com/delivery-speed-part-1/delivery-delta-95/" rel="attachment wp-att-14220"><img class="size-medium wp-image-14220" title="Time to Send 95% of Emails Received (per Hour)" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Delivery-Delta-95-477x300.png" alt="Time to Send 95% of Emails Received (per Hour)" width="477" height="300" /></a></p><p><a href="http://blog.mailchimp.com/delivery-speed-part-1/delivery-delta-99-5/" rel="attachment wp-att-14221"><img class="size-medium wp-image-14221" title="Time to Send 99.5% of Emails Received (per Hour)" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Delivery-Delta-99.5-477x300.png" alt="Time to Send 99.5% of Emails Received (per Hour)" width="477" height="300" /></a></p><h3>Notes</h3><p>Why don’t you see a graph for 100%?  Well, it turns out that a lot of lists contain one or two addresses that don’t exist or can’t receive email anymore.  The way we figure it, there’s always a chance.  We’ll try to get the ISP to accept the email for up to three days, and sometimes it actually works.  It makes my charts look horrifying though, so I cut the numbers off at 99.5%.  Problem solved.</p><p>You may have noticed that Yahoo loves to throttle email.  If your list has a lot of Yahoo addresses, you&#8217;ll want to take this into account.  For those looking at the “All” line, it’s simply the sum of all the emails together.  As the percent completion goes up, the last few thousand emails tend to be heavily weighted with Yahoo addresses.  The “All” line reflects this by inching up as well.</p><p>I&#8217;m pretty happy with these delivery times. For most ISPs, 95% of the emails in our queues are sent out in 5 minutes or less. It says we&#8217;ve done a good job at balancing reputation and speed. In the second part of this series, I&#8217;ll go over all the stuff that happens to your campaign before it ever hits the queue. It&#8217;ll be a lot like going behind the scenes at Universal Studios. There will be flames shooting up out of nowhere and you&#8217;ll see that Freddie is an awesome robot.</p><p>Go to <a href="http://blog.mailchimp.com/delivery-speed-part-2/">Delivery Speed, Part 2</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/delivery-speed-part-1/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Facebook Messages</title><link>http://blog.mailchimp.com/facebook-messages/</link> <comments>http://blog.mailchimp.com/facebook-messages/#comments</comments> <pubDate>Tue, 21 Jun 2011 14:00:52 +0000</pubDate> <dc:creator>Matthew</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[Social]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category> <category><![CDATA[facebook]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=13462</guid> <description><![CDATA[Around the office, we love taking new services for a test run. You never know when you&#8217;re going to find the next &#8220;must have&#8221; feature for our users. When Facebook began rolling out @facebook.com addresses, we had to take a look. There&#8217;s been a lot of good commentary on the scope and impact Facebook Messages [...]]]></description> <content:encoded><![CDATA[<p> Around the office, we love taking new services for a test run.  You <a href="http://blog.mailchimp.com/myspace-mail-usage-slowly-growing/" target="_blank">never know </a> when you&#8217;re going to find the next &#8220;must have&#8221; feature for our users.  When Facebook began rolling out <a href="http://www.facebook.com/blog.php?post=452288242130" target="_blank">@facebook.com</a> addresses, we had to take a look.</p><p>There&#8217;s been a lot of good commentary on the <a href="http://www.cernam.com/blog/2011/06/breaking-the-bad-news-facebooks-new-messages-e-discovery/" target="_blank">scope</a> and <a href="http://www.pcworld.com/article/210758/facebook_messages_the_worst_thing_that_ever_happened.html" target="_blank">impact</a> Facebook Messages will have on the email using <a href="https://twitter.com/#!/Scobleizer/status/4272904388743168" target="_blank">community</a>.  That&#8217;s a big community, by the way, and it happens to include my mom.  Bless her heart, she signed up for Facebook last week, and now I have to <a href="http://searchengineland.com/how-facebook-messages-email-system-works-56004" target="_blank">explain</a> that email, chats, and text messages aren&#8217;t separate things anymore.  It was difficult enough explaining the difference to begin with!  For our MailChimp users, I thought I&#8217;d go into a little more detail.</p><p><span id="more-13462"></span></p><p>First and foremost, you need to know Facebook isn&#8217;t offering a robust email service.  They specialize in person-to-person communication, and it helps if both people are Facebook users.  If you take that away, the connection between email, chat, and SMS becomes less significant.  What you&#8217;re left with is a click heavy interface with an intentionally <a href="http://news.softpedia.com/news/Facebook-Messages-Merges-Email-SMS-and-Chat-Into-One-Seamless-Platform-166723.shtml" target="_blank">limited</a> set of options that contains all of your communication behind a series of drop-down menus.  Whew!  So what does this mean for your subscribers?</p><h3>Can they receive your campaigns?</h3><p>Say an @facebook.com user signs up for your newsletter.  The first thing you&#8217;ll do is send a confirmation email, but wait.  If they don&#8217;t have &#8220;Everyone&#8221; set in their privacy settings, your confirmation will be dropped.  Yes, dropped.  That means it won&#8217;t show up in the inbox or the spam folder, but it won&#8217;t bounce either.  You and your subscriber are just out of luck.</p><div id="attachment_13529" class="wp-caption aligncenter" style="width: 510px"><a rel="attachment wp-att-13529" href="http://blog.mailchimp.com/facebook-messages/facebook-privacy-messages/"><img class="size-medium wp-image-13529" title="Facebook-Privacy-Messages" src="http://blog.mailchimp.com/wp-content/uploads/2011/06/Facebook-Privacy-Messages-500x39.png" alt="Facebook Messages - Privacy Setting" width="500" height="39" /></a><p class="wp-caption-text">This privacy setting can have a big effect on your open rates.</p></div><p>Okay, the privacy thing wasn&#8217;t an issue, and we got that first email through the door.  At this point, they can change their privacy setting to &#8220;Friends Only,&#8221; and your campaigns will still get delivered.  Awesome!  That&#8217;s great news for you and privacy geeks like myself, but I should pass on one warning.</p><p>Your emails are tracked and grouped by the reply-to address.  If you switch to a new address, you&#8217;re starting a whole new thread inside Facebook Messages.  That means new reply-to addresses are susceptible to privacy updates, so always be consistent.  Otherwise, you might discover Facebook is dropping a lot of your emails.</p><div id="attachment_13518" class="wp-caption aligncenter" style="width: 510px"><a rel="attachment wp-att-13518" href="http://blog.mailchimp.com/facebook-messages/facebook-messages-other/"><img class="size-medium wp-image-13518" title="Facebook-Messages-Other" src="http://blog.mailchimp.com/wp-content/uploads/2011/06/Facebook-Messages-Other-e1308592388129-500x125.png" alt="Grouping Facebook Messages" width="500" height="125" /></a><p class="wp-caption-text">All the emails you send are grouped into a single thread.  These groups are separated by the &quot;reply-to&quot; address, but they appear under your &quot;from&quot; name.</p></div><h3>Will they see your email?</h3><p>Messages from bulk senders and other non-friends go to a special directory called &#8220;Other.&#8221;  As mentioned earlier, emails are grouped by the reply-to address with new emails appearing at the bottom.  When a subscriber clicks on your thread, they&#8217;re automatically taken to your latest email.  However, they&#8217;re looking at the plain-text version.  Clicking an &#8220;Expand&#8221; link brings up the html version, but we need to take a special look at these plain-text previews.</p><div id="attachment_13606" class="wp-caption aligncenter" style="width: 510px"><a rel="attachment wp-att-13606" href="http://blog.mailchimp.com/facebook-messages/facebook-text-html/"><img class="size-medium wp-image-13606" title="Facebook-Text-HTML" src="http://blog.mailchimp.com/wp-content/uploads/2011/06/Facebook-Text-HTML-500x293.png" alt="Facebook Plain-Text vs HTML Views" width="500" height="293" /></a><p class="wp-caption-text">On the left is how your emails look after the subscriber enters your thread.  They have to click the &quot;Expand&quot; link in order to see the HTML version on the right.</p></div><p>You can&#8217;t ignore the plain-text version of your campaigns.  There are certain content elements that cause Facebook Messages to cut the visible portion of your plain-text campaign.  Remember, we can&#8217;t count opens unless they expand the html version, so you&#8217;ll want to play around with this preview.   So what are the cut-off signals?</p><ul><li>Underscores (e.g. _HEADER_)</li><li>Numbers separated by spaces (e.g. Sep 21, 2010 03:05 pm)</li><li>I did a lot of testing, but that doesn&#8217;t mean I caught everything.  Please comment if you find something new!</li></ul><p>By the way, these cut-off signals also apply to text-only campaigns.  Instead of an &#8220;Expand&#8221; link, there is a &#8220;Show Hidden Text&#8221; link that appears in a completely different spot on the preview.  Odd? Regardless, if you care about presentation, this is an important feature to keep in mind.</p><div id="attachment_13605" class="wp-caption aligncenter" style="width: 510px"><a rel="attachment wp-att-13605" href="http://blog.mailchimp.com/facebook-messages/facebook-clip-numbers/"><img class="size-medium wp-image-13605" title="Facebook-Clip-Numbers" src="http://blog.mailchimp.com/wp-content/uploads/2011/06/Facebook-Clip-Numbers-500x177.png" alt="Side by Side Comparison of Plain Text Preview" width="500" height="177" /></a><p class="wp-caption-text">This side-by-side comparison shows the effect a date can have on the email preview.  On the left, the date read &quot;Jun 13, 2011 08:00 am.&quot;  On the right, I removed the spaces to make it &quot;Jun 12,201108:00 am.&quot;</p></div><h3>Deliverability</h3><p>Facebook&#8217;s policies toward bulk email senders can be summed up very simply: &#8220;<a href="http://postmaster.facebook.com/bulk_guidelines" target="_blank">Facebook only accepts bulk mail from highly reputable sources and does not offer support for any issues encountered.</a>&#8220;  This may sound harsh, but it isn&#8217;t uncommon.  It means the best thing we can do to ensure delivery is to maintain our IP reputation.  That&#8217;s something we already do, and it&#8217;s why you&#8217;ll hear us talk <a href="http://blog.mailchimp.com/real-stats-how-sending-to-old-lists-will-kill-your-deliverability/" target="_blank">again</a> and <a href="http://kb.mailchimp.com/article/ask-before-you-blast/" target="_blank">again</a> about permission based lists, double opt-in confirmation, and <a href="http://blog.mailchimp.com/effect-of-social-networks-on-email-engagement/" target="_blank">engagement</a>.</p><p>The truth is, no one knows if Facebook Messages has a future or not.  Right now, MailChimp users don&#8217;t seem to have noticed.  We send 1.5 billion emails a month and see less than 10 thousand @facebook.com addresses in that time.  Of course, things could change at any moment.  Like a giant hovering its foot over your house, you really shouldn&#8217;t ignore Facebook.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/facebook-messages/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Can you guarantee my deliverability?</title><link>http://blog.mailchimp.com/can-you-guarantee-my-deliverability/</link> <comments>http://blog.mailchimp.com/can-you-guarantee-my-deliverability/#comments</comments> <pubDate>Fri, 11 Mar 2011 19:50:44 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[IMHO]]></category> <category><![CDATA[Spam Topics]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=12356</guid> <description><![CDATA[A question we get all the time: "Can you guarantee my deliverability?" ]]></description> <content:encoded><![CDATA[<p>Below is a common question that we get on <a href="http://blog.mailchimp.com/tag/deliverability/">the topic of deliverability</a>. I&#8217;m posting our response because we&#8217;re getting this question so much lately. By the way, the comment about one of our competitors (whether it&#8217;s true or not), is also why we don&#8217;t have sales quotas at MailChimp. Heck, it&#8217;s why we don&#8217;t have sales <em>people</em> here at MailChimp. Their goals sometimes get out-of-sync with the truth (I blame this on upper management, not on the sales people themselves). Anyway, here&#8217;s the question:</p><blockquote><div id="_mcePaste"><em>Hi MailChimp,</em></div><div id="_mcePaste"><em><br /> </em></div><div><em>My name is [NAME] and I am the Marketing Director of a Group Buying site in [COUNTRY] ([COMPANYNAME]).</em></div><div><em><br /> </em></div><div id="_mcePaste"><em>I am currently looking to upgrade our Email Marketing System and am in conversations with [COMPETING ESP]. I have never used [COMPETING ESP] and have used MailChimp.</em></div><div><em><br /> </em></div><div id="_mcePaste"><em>[COMPETING ESP] seem to think that they can gaurantee 20% better deliverability than MailChimp. Is that something you can disprove? How can you disprove this (e.g. comparison of technology, types of examples)</em></div><div><em><br /> </em></div><div id="_mcePaste"><em>We will be sending many emails by the end of the year (in excess of 200 million). Can you guys effectively handle this type of volume?</em></div></blockquote><p><span id="more-12356"></span></p><p>This is the response that <em><strong>I </strong></em>proposed:</p><blockquote><p><em>We published <a href="http://mailchimp.com/about/deliverability/">this page over here</a> to show that so long as you, the sender, follow best practices, MailChimp&#8217;s infrastructure can help you achieve 99% (and sometimes 100%) delivery to the inbox. But if <span style="font-style: normal;"><em>[COMPETING ESP]</em></span> can actually get you <strong>120%</strong> to the inbox, then wow. By all means, you should use them.</em></p></blockquote><p>and that is why I am not on the front lines answering questions anymore. In fact, I&#8217;m not sure how I&#8217;m still allowed to answer comments on this blog.</p><p>Fortunately, our support team has a better, more professional response to this question (hyperlinks and <strong>emphasis</strong> below are added by me):</p><blockquote><p><em>Hello <span style="font-style: normal;"><em>[NAME]</em></span>,</em></p><p><em>Any email marketer can technically obtain 100% delivery so long as the following is in place:</em></p><ul><li><em>Data is collected through confirmable opt-in methods.  There are <a href="http://blog.wordtothewise.com/2011/03/permission-ish-based-marketing/" target="_blank">no assumptions about permission</a> in play. (The account owners responsibility)</em></li><li><em>Content sent is 100% spam filter safe. (The account owners responsibility, which we can help <a href="http://www.mailchimp.com/features/inbox-inspector/">with this</a> and <a href="http://www.mailchimp.com/features/delivery-doctor/">this</a>)</em></li><li><em>Your delivery solution dynamically monitors and polices its environment for misuse and <strong><a href="http://blog.mailchimp.com/update-on-omnivore-new-3-strikes-rule/">aggressively</a></strong> closes accounts that create situations that could harm other accounts within the system. (The ESP&#8217;s responsibility)</em></li></ul><p><em>This is the technology that we use to police our service for bad apples:</em></p><p><em><a href="http://www.mailchimp.com/omnivore/">http://www.mailchimp.com/omnivore/</a> (an overview)</em></p><p><em><a href="http://blog.mailchimp.com/project-omnivore-declassified/">http://blog.mailchimp.com/project-omnivore-declassified/</a> (more technical background)</em></p><p><em>You might want to review the account shut down stats for <span style="font-style: normal;"><em><span style="font-style: normal;"><em>[COMPETING ESP]</em></span></em></span> for insight into their protection measures.</em></p><p><em>This page provides additional deliverability information with regards to our service</em><em> (including our definition of the word, and the <a href="http://returnpath.net/commercialsender/monitoring/" target="_blank">seed list we use</a>):</em></p><p><a href="http://mailchimp.com/about/deliverability/"><em>http://mailchimp.com/about/deliverability/</em></a></p><p><em>The delivery graphs there give examples of how someone that moves to our service, <strong>and</strong> who follow best practices outlined above, can quickly obtain 100% deliverability. There is a sample group buying site there, which you might find useful, as well as <a href="http://blog.mailchimp.com/daily-senders-deliverability/">this article about daily senders</a>, by someone on our delivery team.</em></p><p><em>Our system currently sends on average over 1 billion emails a month. So 200 million annually is not at all a problem.</em></p></blockquote><p>I think, in a nutshell, the answer is that <em>&#8220;Most well-established ESPs have gotten their infrastructure set up and proactively monitored to allow for extremely good delivery to the inbox. The rest is up to the sender. And if the sender does screw something up, it&#8217;s the ESPs responsibility to purge them from the system with extreme prejudice (whenever <a href="http://blog.mailchimp.com/account-status-sasquatch-screen/">gentle hints </a>and <a href="http://blog.mailchimp.com/dont-be-a-rudy/">educational intervention</a> are not enough).&#8221; </em></p><p>Other deliverability related stuff you may be interested in:</p><ul><li><a href="http://mailchimp.com/resources/guides/how-to-avoid-spam-filters/">How To Avoid Spam Filters</a> (free guide)</li><li><a href="http://mailchimp.com/resources/guides/email-delivery-for-it-professionals/">Email Delivery for Geeks</a> (free guide)</li><li><a href="http://mailchimp.com/resources/guides/warning-signs-that-your-client-is-spamming/">Warning Signs That Your Client is Spamming</a> (free guide)</li><li><a href="http://blog.mailchimp.com/gmail-gives-engagement-priority/">Priority Inboxes and Measuring Engagement</a></li><li><a href="http://blog.mailchimp.com/daily-senders-deliverability/">Daily Senders and Deliverability</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/can-you-guarantee-my-deliverability/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Show some love with transactional emails</title><link>http://blog.mailchimp.com/show-some-love-with-transactional-emails/</link> <comments>http://blog.mailchimp.com/show-some-love-with-transactional-emails/#comments</comments> <pubDate>Fri, 18 Feb 2011 15:29:07 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[IMHO]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=11917</guid> <description><![CDATA[Show some love with those do-not-reply transactional emails]]></description> <content:encoded><![CDATA[<p>We just sent out a System Alert email to several hundred thousand users about a planned server upgrade this weekend. I know that whenever people receive transactional emails like this, they&#8217;re not expecting any humans to actually be watching for replies. That&#8217;s <em>exactly</em> why I enjoy sifting through all the replies and personally responding to as many customers as I can (just to freak them out a little)&#8230;</p><p><span id="more-11917"></span></p><p>Mario was super nice to give us his blessing for the outage:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/02/quietly-too.gif"><img class="alignnone size-full wp-image-11918" style="margin: 5px;" title="quietly-too" src="http://blog.mailchimp.com/wp-content/uploads/2011/02/quietly-too.gif" alt="" width="537" height="540" /></a></p><p>We dedicated <a href="http://eepurl.com/cHubg" target="_blank">this song on blip.fm</a> to Joe:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/02/you-rock-joe.gif"><img class="alignnone size-full wp-image-11919" style="margin: 5px;" title="you-rock-joe" src="http://blog.mailchimp.com/wp-content/uploads/2011/02/you-rock-joe.gif" alt="" width="595" height="620" /></a></p><p>Hopefully, they&#8217;re not planning to wear matching shirts out together or anything:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/02/missing-shirt.gif"><img class="alignnone size-full wp-image-11921" style="margin: 5px;" title="missing-shirt" src="http://blog.mailchimp.com/wp-content/uploads/2011/02/missing-shirt.gif" alt="" width="571" height="490" /></a></p><p>Whenever your company sends transactional emails, does anyone watch for replies?</p><p>If not, you could be missing out on some good fun (and maybe losing a few <a href="http://blog.mailchimp.com/gmail-gives-engagement-priority/">precious Gmail engagement points</a>).</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/show-some-love-with-transactional-emails/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Measuring Deliverability</title><link>http://blog.mailchimp.com/measuring-deliverability/</link> <comments>http://blog.mailchimp.com/measuring-deliverability/#comments</comments> <pubDate>Thu, 03 Feb 2011 17:55:11 +0000</pubDate> <dc:creator>Chad</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[Stats]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=11566</guid> <description><![CDATA[[Update from Ben: 02/08/2011] We wrote this blog post to show that current self-reported &#8220;deliverability scores&#8221; and &#8220;inbox rates&#8221; are hard to believe. You have to take the ESP&#8217;s word for it that they get &#8220;99% to the inbox&#8221;. What we need is a truly independent scoring system that anybody can use to verify ESP [...]]]></description> <content:encoded><![CDATA[<p><strong>[Update from Ben: 02/08/2011]</strong> We wrote this blog post to show that current self-reported &#8220;deliverability scores&#8221; and &#8220;inbox rates&#8221; are hard to believe. You have to take the ESP&#8217;s word for it that they get &#8220;99% to the inbox&#8221;. What we need is a truly independent scoring system that anybody can use to verify <em>ESP</em> deliverability claims. We thought we found that (or got pretty darn close) in ReturnPath&#8217;s SenderScore.</p><p>The first few comments we got were understandably furious. But eventually, the conversation changed. We think we were on the way to a very constructive discussion. I really enjoyed the dialogue I had with people offline as a result of all this, and I want to thank all the email companies who commented here &#8212; CritSend, CampaignMonitor, PostMarkApp, and Al Iverson&#8217;s A-1 Super Awesome Home DSL Email Service. <img src='http://blog.mailchimp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   I mean, don&#8217;t get me wrong. We&#8217;re competitors. We&#8217;re not going to be singing Kumbaya around the campfire with each other any time soon. It&#8217;s just nice talking to people who know their stuff. I wish the discussion could continue.</p><p>But my patience has been worn down. ReturnPath is naggi&#8212;asking me politely to take this post down, because they &#8220;don&#8217;t want to arbitrate arguments between their partners.&#8221; [I didn't realize we were asking them to arbitrate] I suggested that, as an independent, unbiased scoring system, they should just do what I do: ignore the bastards. Actually, I suggested the complainers needed to &#8220;grow some&#8221; and that ReturnPath ought to tell them so. But that&#8217;s not how ReturnPath rolls (thankfully, I guess).</p><p>Anyway, some of the arguments we heard about our posted methodology seemed to go like this: &#8220;Your methodology is flawed, because SenderScore penalizes IP addresses that send very low volumes, and that don&#8217;t have a high reputation. For example, I have an IP address that has GREAT inbox rates (um, trust me) but that have a low SenderScore.&#8221;</p><p>Well, yes. We know that low-volume, low-reputation IPs can get great deliverability.</p><p>Buuuut we happen to think that an ESP&#8217;s very job is to send high volumes of email while simultaneously maintaining a good IP reputation. We send out tons of email through our infrastructure, 24/7. If it were a race car engine, SenderScore&#8217;s our tachometer. Does it show actual vehicle speed? No. But it&#8217;s extremely indicative of engine performance. If we see our SenderScore drop from 94 to 70, there&#8217;s a problem with the engine. It&#8217;s time to pull over and get that deliverability fixed.</p><p>So to people who say &#8220;SenderScore is a bogus number&#8221; we respectfully disagree. It may not work for all senders, but it works for ESPs. The ones who send high volume. And want to measure their reputation.</p><p>Obviously, I am not concerned with what other ESPs think, or how they respond. But personally, I think that ReturnPath&#8217;s naggi &#8212; um, polite requests for me to pull this blog post is actually going to work against them. I think they&#8217;re defending the very people who are disputing the validity of SenderScore. On the one hand, that concerns me. On the other hand, I&#8217;ve always appreciated irony. And I absolutely hate the blinking red voicemail light on my office phone.</p><p>So this awesome blog post, which attempted to highlight the usefulness of ReturnPath&#8217;s SenderScore, is now officially yanked &#8212; at the request of ReturnPath.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/measuring-deliverability/feed/</wfw:commentRss> <slash:comments>38</slash:comments> </item> <item><title>Daily Senders &amp; Deliverability</title><link>http://blog.mailchimp.com/daily-senders-deliverability/</link> <comments>http://blog.mailchimp.com/daily-senders-deliverability/#comments</comments> <pubDate>Tue, 14 Dec 2010 21:28:36 +0000</pubDate> <dc:creator>Matthew</dc:creator> <category><![CDATA[Community]]></category> <category><![CDATA[Deliverability]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=11082</guid> <description><![CDATA[Wow, your company is really taking off, and that daily email to four thousand subscribers has exploded to forty thousand subscribers.  Pretty soon it will be four hundred thousand, and maybe one day you&#8217;ll reach four million!  We&#8217;re really excited for you, and now that you&#8217;re growing, it&#8217;s time for us to have &#8220;the talk.&#8221; [...]]]></description> <content:encoded><![CDATA[<p>Wow, your company is really taking off, and that daily email to four thousand subscribers has exploded to forty thousand subscribers.  Pretty soon it will be four hundred thousand, and maybe one day you&#8217;ll reach four million!  We&#8217;re really excited for you, and now that you&#8217;re growing, it&#8217;s time for us to have &#8220;the talk.&#8221;  That&#8217;s right, it&#8217;s about revisiting your email marketing strategy.</p><p>Perhaps you&#8217;ve observed your bounce rate going up while your open and click rates went down.  Maybe you&#8217;ve had increasing problems with blocks, slow delivery, or a number of other issues.  As daily senders, you&#8217;re likely more aware of your deliverability than most, and it&#8217;s going to take a joint effort between you and your ESP to make sure it stays healthy.</p><p><span id="more-11082"></span></p><h2>The Facts of Life</h2><p>You see, those first four thousand subscribers were in love with you.  They wanted your email every day, even if it was a text-only campaign with no colorful images sporting those eye-soothing rounded corners.  They never complained to their ISP about you.  If your email ended up in their spam folder, they dragged it out, added you to their address book, and sent a kind email to let you know there may be trouble.</p><p>That kind of devotion is rare, and it naturally diminishes as you grow.  The next group of subscribers love you, but they aren&#8217;t &#8220;in love&#8221; with you.  Then you met a bunch of people who just like you.  I mean, they like you a lot, but they don&#8217;t like-like you the way your core subscribers do.  It&#8217;s okay, we understand.  If we can just re-inspire those original warm feelings, you&#8217;ll be seeing the love from your campaign stats in no time.</p><h2>What You Can Do</h2><p>I&#8217;m about to give you a secret sauce of magical solutions that will improve your campaigns in every way, but you won&#8217;t like it.  In fact, you&#8217;ll laugh at how naive and ridiculous some of these ideas are.  I&#8217;ll be so embarrassed!  For my sake, maybe you should just skip ahead.  No?  Okay, but I warned you.</p><h1>Magical Solution #1</h1><p>Send less email.  It&#8217;s simple really, only send your daily email to subscribers who want it every day.  Offer a weekly or monthly version to everyone else.  Your open and click rates will go up, and fewer people will feel compelled to hit the &#8220;Spam&#8221; button.</p><p>Pro Tip: You can target your most loyal and newest subscribers at the same time.  When choosing a list for your next campaign, click &#8220;send to segment.&#8221;  Then set the <a href="http://mailchimp.com/kb/article/how-do-you-determine-the-ratings-for-my-member-activity" target="_blank">Member Rating</a> and Date Added filters as in the picture below.  If you&#8217;ve had a spat of complaints or hard bounces and omnivore had to send you a warning, <a href="http://blog.mailchimp.com/segmenting-your-email-campaign-based-on-subscriber-engagement/" target="_blank">list segmenting</a> is the quickest way to rehabilitate your account.</p><div id="attachment_11085" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.mailchimp.com/wp-content/uploads/2010/12/List-Segment.png"><img class="size-medium wp-image-11085" title="List-Segment" src="http://blog.mailchimp.com/wp-content/uploads/2010/12/List-Segment-300x67.png" alt="Segmenting a List Inside a Campaign" width="300" height="67" /></a><p class="wp-caption-text">Segmenting List Inside a Campaign</p></div><h1>Magical Solution #2</h1><p>Improve your content.  If you need to send to your entire list every day, then make sure the content is rich and well rounded enough to be compelling to all.  ISPs are creating tools that put more and more power in the hands of your subscribers.  Every unopened email could be hurting your chances of reaching the inbox next time.</p><p>If applicable, consider segmenting your list by content.  Instead of sending the same long email to everyone, send the tech portion to your tech people, the shopping portion to your shopping people, and so forth.</p><p>While preparing for this blog, I came across <a href="http://blog.mailchimp.com/influence-vs-engagement" target="_blank">something Ben wrote</a> a few months ago.  It caught my eye as a good example of how you can and should take a hard look at your click stats.  The people who are exclusively clicking your tech, italian food, outdoor equipment, or potty humor links are prime candidates for targeted campaigns.  Yes, I am giving you the green light on an all potty humor email&#8230; for the customers.  I certainly don&#8217;t find that kind of thing amusing.  I&#8217;m too mature.  What was your user name again?</p><h1>Magical Solution #3</h1><p>Revise your list collection strategy.  Make sure your list is double opt-in to avoid hitting any spam traps or fake email accounts.  Be very clear with everyone who signs up that they will be receiving a daily email.  If there is a newsletter checkbox when a subscriber creates an account on your site, call more attention to it.  Subscribers who aren&#8217;t expecting your email are more likely to mark it as spam.  If enough people do this, the ISP may block you entirely, and by &#8220;you&#8221; I mean us!</p><h2>What We Can Do</h2><p>I know, I know, I&#8217;ve asked you to make a lot of hard decisions, and you want to know what we can do to help shoulder the burden.  After all, isn&#8217;t that why you signed up with an ESP in the first place?</p><p>The answer to your question is yes, we can help.  Actually, all good ESPs are already doing a ton to make your deliverability great.  This is the part where I&#8217;m going to overwhelm you with technical jargon and not explain what any of it means because it would take too long: DKIM, Reverse DNS, MX Records, Engagement Monitoring, IP Reputation, Blacklist Monitoring, Bounce Handling, SPF, MTA, Registrar, Throttling, Spam Filters, VERP, FBL, Whitelisting, Certification, Static/Dynamic Error Handling, Email Headers, Seed List, etc</p><p>If you&#8217;re interested, all of those terms and processes are explained in our <a href="http://mailchimp.com/resources/guides/email-delivery-for-it-professionals/" target="_blank">Email Delivery For IT Professionals</a> guide.  For daily senders, here are a few subjects you may want to consider when talking to your ESP:</p><h1>Dedicated IPs</h1><p>More than likely, your ESP has a sizable pool of shared IPs that all their users send over.   At MailChimp, we actually have several pools of IPs separated by cleanliness.  That way, emails to your best subscribers go out over our cleanest IP pool, and we can isolate emails to unproven subscribers so they don&#8217;t interfere with the rest of your campaign.  However, high volume senders can benefit from leaving the shared pool and purchasing a dedicated IP.</p><p>I&#8217;ll discuss many benefits of a dedicated IP below, but they key is that we&#8217;re helping ISPs trust you.  As a daily sender, your volume can look aggressive and dangerous, and this raises flags no matter how good your content is.  By sending to an active list from a stable location, we can make that volume look more attractive.  If you&#8217;re trying to get your subscribers to fall in love with you again, think of the ISPs as parents.  If you can get their approval, you&#8217;re a big step ahead of the game.</p><p>And uh, I guess that makes Freddie your wingman.  Yes!  Thank you, thank you.  I&#8217;ll be here all night.  Someone get me some water because this metaphor is on fire.</p><p>Ahem&#8230;</p><h1>Custom DNS</h1><p>So I mentioned that your ESP has a lot of IPs, and each one of those has a domain name.  The domain names probably sound innocent and dull, like email1.campaigns.com.  However, under ideal circumstances an ISP would like to see the domain name match up to the From Address in your campaign.  While most of our users have a great sending history without a custom DNS, a lot of high volume daily senders can benefit from this kind of attention to detail.</p><h1>Bounce Alerts</h1><p>Bounces are both undesirable and inevitable.  Even the best list collection policy can&#8217;t avoid getting a few problem email addresses every now and then.  We like to know the general makeup of your lists so we can be more responsive when bounces do occur.  Each ISP has their own bounce syntax and requires their own unique response.  Knowing what to look for can really help us prevent small problems from becoming big problems.</p><p>Any good ESP will already be familiar with bounce messages from Yahoo, Gmail, Hotmail, AOL, Comcast, or any other big ISP.  Beyond that, location is a key factor.  If the bulk of your list is in South America, your European ESP may not be as familiar with the receiving ISPs.  That doesn&#8217;t mean you need to switch ESPs, but you should get in touch with them to make sure your issues are on their radar.</p><h1>Throttling</h1><p>If it were up to us, we would send your email as fast as computationally possible, but the ISPs would never go for that.  You see, they need time to sniff every email for the salty scent of spam or the sickly odor of viruses.  If we send too much too quickly, they&#8217;ll assume all the email is bad and throw it away.  The very thought gives us stomach cramps, so we do everything we can to assure your emails are sending at the right speed.  For those on dedicated IPs, your throttle rate should be fine tuned to match your IP reputation.</p><p>ISPs are also fond of sending bounce messages saying, and I&#8217;m paraphrasing here, &#8220;Something smells odd, and we&#8217;re going to need time to investigate. Don&#8217;t send us any more email for an hour or I&#8217;m throwing it away and adding you to my list of enemies.&#8221;  Ignoring those warnings can be very unhealthy, so it&#8217;s important your ESP respond as quickly as possible when those bounce messages occur.</p><h2>You&#8217;ve Come a Long Way</h2><p>For any email marketer, it&#8217;s probably worth reviewing your sending strategy every time your list grows by an order of magnitude.  With daily senders, those growing pains are going to be accelerated.  Just think, with a list of thirty-four thousand subscribers you&#8217;ll send a million emails a month.  That&#8217;s definitely cool to email geeks like us.  However, at some point sending out more email becomes less valuable than sending out better email in the right way for your subscribers.  Like any good wingman, we want to see you succeed so we can brag about how we were there when it happened.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/daily-senders-deliverability/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Research: Spammy Email Design Mistakes</title><link>http://blog.mailchimp.com/research-spammy-email-design-mistakes/</link> <comments>http://blog.mailchimp.com/research-spammy-email-design-mistakes/#comments</comments> <pubDate>Wed, 13 Oct 2010 18:11:34 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[Abuse Desk Stories]]></category> <category><![CDATA[Deliverability]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[Spam Topics]]></category> <category><![CDATA[Stats]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category> <category><![CDATA[spam]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=10421</guid> <description><![CDATA[We've been experimenting with crowdsourcing the review of outgoing campaigns from MailChimp's servers.  Within the first 3 days, after sending roughly 7,000 email campaigns over to be reviewed, we ended up with some unexpected, yet fascinating results.]]></description> <content:encoded><![CDATA[<p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/dark-side-of-the-can.png"><img class="alignright size-full wp-image-10431" style="border: 0pt none; margin: 5px;" title="dark-side-of-the-can" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/dark-side-of-the-can.png" alt="dark-side-of-the-can" width="169" height="167" /></a>We recently experimented with <a title="Define in Wikipedia" href="http://en.wikipedia.org/wiki/Crowdsourcing" target="_blank">crowdsourcing</a> the review of outgoing campaigns from MailChimp&#8217;s servers. Normally, if our <a href="http://blog.mailchimp.com/omnivore">Omnivore</a> algorithms detect something suspicious about a campaign, we&#8217;ll automatically suspend the account and follow up with a review by our internal Compliance Team. But we&#8217;ve been testing the idea of <em>also</em> sending the campaign to Amazon&#8217;s <a href="https://www.mturk.com/mturk/welcome" target="_blank">Mechanical Turk</a> service for manual review by humans. We simply showed the email to a &#8220;turker&#8221; and asked them, &#8220;Is this spam?&#8221;</p><p>The experiment only involved sending roughly 7,000 email campaigns over to be reviewed. But within the first 2 days, we started getting back some unexpected, yet fascinating results.</p><p>In particular, there were certain email templates that kept getting repeatedly flagged as spam by these human reviewers, <em><strong>even though they weren&#8217;t spam at all</strong></em>.</p><p>All these &#8220;false positives&#8221; had some common design traits, so we thought we should share our findings&#8230;</p><p><span id="more-10421"></span></p><h2>How Did The Experiment Work?</h2><p>When Omnivore detected an email that had traits of potential abuse, we sent it to Mechanical Turk. A copy of the email (sans private data, like recipient information) was displayed inside of an interface that looked something like this:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/crowdsourced-review-ui-experiment.jpg"><img class="alignnone size-medium wp-image-10435" title="crowdsourced-review-ui-experiment" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/crowdsourced-review-ui-experiment-209x300.jpg" alt="crowdsourced-review-ui-experiment" width="209" height="300" /></a></p><p>In general, we listed some rules at the top, then presented the campaign below it, then asked the reviewer to tell us if the email violated any of the listed rules, back at the top of the page. User Interface snobs will notice that in general, this interface looks like it was QWERTY-fied (designed to slow users down a little). We could&#8217;ve used very simple &#8220;Is this spam? Yes/No&#8221; buttons, but you don&#8217;t want people judging <em>too </em>fast.</p><h3>How Effective Was The Experiment?</h3><p>The experiment went as well as you&#8217;d expect, using people who weren&#8217;t  heavily trained on the intricacies of permission-based email marketing.  Generally speaking, Turkers like to work fast, so they&#8217;re best for picking  out the most egregious offenders (think along the lines of porno or  pharma spam). To that end, they&#8217;re great at catching the really evil spammers who try to penetrate into our system and send extremely bad stuff that would jeopardize our deliverability.</p><p>But when it came to reviewing an email from, say, a  reputable business that purchased a not-so-reputable list from a local  chamber of commerce, the reviewers experienced some difficulty. So crowdsourcing is good, but not a silver bullet with respect to abuse prevention (we are still crowdsourcing, but the experiment has changed significantly).</p><p>Though we weren&#8217;t thrilled with the initial results, this exercise revealed a lot about how people look at email design.</p><h2>21 Seconds To Decide</h2><p>Mechanical Turk measures how much time people spend performing each review, so we can tell when people are just clicking random stuff and moving on to their next task. On average, the human reviewers spent only <strong>21 seconds</strong> reviewing these &#8220;false positive&#8221; emails. Now, we can&#8217;t read their minds, so there&#8217;s no reliable way of telling if they bothered to check for &#8220;permission reminders&#8221; or &#8220;CAN-SPAM compliance&#8221; in the footers. But it&#8217;s safe to say they weren&#8217;t doing a very thorough analysis. I&#8217;d wager that most of that 21 seconds was spent reading the criteria at the top of the interface, and <em>not</em> the email itself. They definitely weren&#8217;t visiting the senders&#8217; websites to see if there was a proper signup form, and testing to see if they used opt-in best practices. They were making relatively quick, gut-level decisions on whether or not an email &#8220;looked spammy.&#8221;</p><h2>The False Positives</h2><p>Below are some email designs that kept getting marked as spam by Mechanical Turk reviewers. Keep in mind that at the time of this experiment, none of the senders of these emails were determined to be abusive. Their email stats suggested they were sending permission-based emails. Their <em>recipients</em> probably knew the emails were legit &#8212; but our independent reviewers did not.</p><h3>1. Want to learn Photoshop?</h3><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/learn-chinese.png"></a><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/learn-chinese_spammed.jpg"><img class="alignnone size-medium wp-image-10423" title="learn-chinese_spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/learn-chinese_spammed-300x278.jpg" alt="learn-chinese_spammed" width="300" height="278" /></a></p><p>In general, I think the above email has got some layout issues that make it look a bit sloppy. Their images are breaking the template. At the top, where people are accustomed to seeing a logo, the sender only used text. In fact, the text isn&#8217;t even the company&#8217;s name, but a bright red &#8220;salesy&#8221; kind of question: &#8220;<span style="color: #ff0000;"><strong>Want to learn Japanese or Chinese?</strong></span>&#8221; Doesn&#8217;t exactly inspire confidence that you know your recipient, or what he&#8217;s interested in. Unfortunately, the Chinese characters don&#8217;t help their reputation much either. We&#8217;ve all received a bit too much of this in our inbox:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/chinese-spam.jpg"><img class="alignnone size-medium wp-image-10451" title="chinese-spam" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/chinese-spam-300x164.jpg" alt="chinese-spam" width="300" height="164" /></a></p><h3></h3><h3>2. The Red Flyer</h3><p>I&#8217;m sure that loyal customers of this local pizzeria were happy to get an offer for a free t-shirt:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/pizza-deals_spammed.gif"><img class="alignnone size-medium wp-image-10424" title="pizza-deals_spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/pizza-deals_spammed-210x300.gif" alt="pizza-deals_spammed" width="210" height="300" /></a></p><p>But I don&#8217;t think our human reviewers liked the &#8220;hyperlink blue&#8221; verdana font, then the giant red &#8220;FREE&#8221; text below that (then the green text below that, then the blue text below that, then the gray text below that). Something about this email made it look more like a stock template for a flyer, not an email newsletter to loyal customers. I couldn&#8217;t help but think that the scrunched up airplane logo looked like those images that spammers try to skew, in order to get around anti-spam filters who scan the content of images:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/skewed-image-spam1.jpg"><img class="alignnone size-medium wp-image-10461" title="skewed-image-spam" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/skewed-image-spam1-300x278.jpg" alt="skewed-image-spam" width="300" height="278" /></a></p><p>Aside from the image quality issues, some extra copy could&#8217;ve been added to demonstrate that this email was being sent to their customers. Don&#8217;t get me wrong. T-shirt giveaways can be  extremely effective (here are <a href="http://blog.mailchimp.com/twitter-for-promos-without-being-a-dbag/">some stats to prove it</a>), but you should probably do more than just yell &#8220;FREE T-SHIRT!&#8221;</p><p>At the very least, an image of the actual t-shirt seems in order.</p><p>Here&#8217;s <a href="http://us1.forward-to-friend.com/forward/preview?u=fdb31f79c140bd0e11d1f8aa0&amp;id=871120fcfa" target="_blank">a nice example from ScoutMob</a>:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/scoutmob-shirts.jpg"><img class="alignnone size-medium wp-image-10466" title="scoutmob-shirts" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/scoutmob-shirts-273x300.jpg" alt="scoutmob-shirts" width="273" height="300" /></a></p><h3>3. Not Plain Enough Text</h3><p>This email repeatedly got marked as spam by our reviewers:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/event-spammed.gif"><img class="alignnone size-medium wp-image-10425" title="event-spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/event-spammed-221x300.gif" alt="event-spammed" width="221" height="300" /></a></p><p>You&#8217;ll notice it has no images. No branding, no logos, no photos.</p><p>Yes, one could make the case that plain, old-fashioned, text-only emails can be more personal, and therefore more effective under some circumstances.</p><p>But if you&#8217;re gonna go all-text, you need to go all the way, baby. Centered text, colored backgrounds, and colored borders look like you&#8217;re going for an HTML email look. But when you fail to include any logos or images, it looks half-baked. Like a spammer, getting all &#8220;Rich Text:&#8221;</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/not-alltext-spam1.jpg"><img class="alignnone size-medium wp-image-10462" title="not-alltext-spam" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/not-alltext-spam1-300x174.jpg" alt="not-alltext-spam" width="300" height="174" /></a></p><p>Even if you don&#8217;t have a logo, one way of showing your brand is to include your website&#8217;s domain. But this sender used the bit.ly URL shortener instead:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/bitly-zoom.jpg"><img class="alignnone size-full wp-image-10473" style="border: 1px solid black; margin: 5px;" title="bitly-zoom" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/bitly-zoom.jpg" alt="bitly-zoom" width="272" height="205" /></a></p><p>In their defense, that&#8217;s probably because the link to the event they&#8217;re promoting was really long or something (webinar links get that way sometimes). The problem is that spammers are known to hide malicious links behind reputable URL shorteners (see: <a href="http://blog.mailchimp.com/url-shorteners-and-blacklists/">URL Shorteners and Blacklists</a>), so that helpful little link just ends up hurting them.</p><h3>4. Read it and Weep</h3><p>This one was actually surprising to me, because I thought it was well designed:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/tracey_spammed.gif"><img class="alignnone size-medium wp-image-10426" style="border: 1px solid black; margin: 5px;" title="tracey_spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/tracey_spammed-168x300.gif" alt="tracey_spammed" width="168" height="300" /></a></p><p>The title font even looks customized (it&#8217;s not arial, it&#8217;s not verdana, and it&#8217;s <a href="http://blog.mailchimp.com/scientific-proof-comic-sans-sucks-for-email/">certainly not comic sans</a>). It&#8217;s laid out pretty nicely. The pink is a custom color, too. The only possible problem that I can see is that it&#8217;s extremely text-heavy, with zero images. To the untrained eye, it <em>almost</em> falls into that &#8220;not plain-enough text&#8221; category above, but this doesn&#8217;t look half-baked or sloppy at all to me. This email shows signs of actual craftsmanship and skill with typography (<a href="http://www.informationarchitects.jp/en/the-web-is-all-about-typography-period/" target="_blank">web design <em>is</em> 95% typography, right</a>?). This sender&#8217;s subscribers are probably fine with all this text (the sender is an author, after all). But to our independent reviewers, this email apparently looked pretty spammy. In this case, I personally wouldn&#8217;t change my design or behavior. If I<em> had</em> to make recommendations, I&#8217;d consider adding elements that made it look more &#8220;newslettery.&#8221; Perhaps a small avatar of the author could be worked into the template&#8217;s footer, or some &#8220;share this on social sites&#8221; icons. If this is all about the written word, and images are forbidden, <a href="http://bibliodyssey.blogspot.com/2008/02/ornamental-typography.html" target="_blank">text can be ornamental too</a>.</p><h3>5. Set it and Forgot it</h3><p>Senders that used one of our stock RSS-to-email templates seemed to get flagged the most:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/terry-spammed.gif"><img class="alignnone size-medium wp-image-10427" style="border: 1px solid black; margin: 5px;" title="terry-spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/terry-spammed-242x300.gif" alt="terry-spammed" width="242" height="300" /></a></p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/conservation-spammed.jpg"><img class="alignnone size-medium wp-image-10428" style="border: 1px solid black; margin: 5px;" title="conservation-spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/conservation-spammed-198x300.jpg" alt="conservation-spammed" width="198" height="300" /></a></p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/ideation-spammed.gif"><img class="alignnone size-medium wp-image-10429" style="border: 1px solid black; margin: 5px;" title="ideation-spammed" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/ideation-spammed-205x300.gif" alt="ideation-spammed" width="205" height="300" /></a></p><p>As I write this article, we&#8217;re actually working on tweaking this template so that the header is more customizable (forcing the title to be ALL CAPS, in retrospect, was <a href="http://blog.mailchimp.com/kb/article/how-spam-filters-think/">not a great idea</a>).</p><p>But many of the bloggers who used this template didn&#8217;t bother customizing the RSS merge tags any further to include images from their posts. They didn&#8217;t customize the fonts, link colors, or anything at all, it seems.</p><p>I also wonder if, in some cases, the Table of Contents was so large, our independent reviewers didn&#8217;t bother scrolling down to look for real content. All they saw was a bunch of nonsensical looking TOC links. This happens if you update your blog frequently, but you schedule your RSS-to-email campaign to go out in weekly or monthly batches. Not that I&#8217;d change my behavior just for random Mechanical Turk reviewers. What your subscribers want is more important.</p><p>But there&#8217;s a broader lesson here on image vs. text balance. A similar example plucked from my spam folder in Gmail:</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2010/10/thermal-africa-society.gif"><img class="alignnone size-medium wp-image-10468" title="thermal-africa-society" src="http://blog.mailchimp.com/wp-content/uploads/2010/10/thermal-africa-society-291x300.gif" alt="thermal-africa-society" width="291" height="300" /></a></p><h3>Why this is important to email marketers</h3><p>When you send a lot  of email marketing,  even to a totally permission-based double opt-in  list, you&#8217;re <em>going</em> to  get some spam complaints from your recipients. It&#8217;s inevitable. Sometimes,  it&#8217;s because they&#8217;re too  lazy to click your unsub link, they think the &#8220;spam&#8221; button <em>is</em> the unsub link, or sometimes  it&#8217;s because they forgot  signing up to your list (maybe because you  send infrequently, like me).</p><p>And sometimes, when your email is marked  as spam, a human from  an ISP, or a human from an anti-spam  organization, will  actually do a manual review of your email (See: <a href="../whos-secretly-reading-your-emails/">&#8220;Who&#8217;s secretly reading your emails?&#8221;</a>). Some anti-spam organizations use <em>volunteers</em>, who are driven  by passion more than pay (nothing wrong with that, but you have to wonder how detailed their training is). We&#8217;ve experienced enough <em>&#8220;your  client&#8217;s email has been reviewed by our team, and determined to be spam,  so we&#8217;re blocking your IP range&#8221;</em> situations to know that those reviewers don&#8217;t  always do a thorough analysis of your list management practices (not part of their job description anyway). This  is partly why our own terms of use seem so strict to some. ISPs get  complaints, they look at your email, and they make a split-second  decision to &#8220;blacklist or not.&#8221;</p><p>So even if you do your list  management right, and you design everything perfectly around your  subscribers&#8217; expectations, we always recommend that you give some consideration to this  &#8220;secret&#8221; audience that also reads your email (See: <a href="../what-makes-a-good-permission-reminder/">&#8220;What makes a good permission reminder?&#8221;</a>). Don&#8217;t bend over backwards for them, or anything.</p><p>It&#8217;s kind of like how your mother always told you to <a href="http://www.youtube.com/watch?v=LVHXkqW8qKk" target="_blank">wear clean underwear</a>, &#8220;in case you&#8217;re in an accident.&#8221; Take a good look at your email templates, and ask yourself, &#8220;If my email got reported as spam, and some <a href="http://www.spamcop.net/" target="_blank">spamcop</a> laid his eyes on it, what would they think? Would mom be proud?&#8221;</p><p><strong>Related:</strong></p><ul><li><a href="http://blog.mailchimp.com/how-your-email-design-can-get-you-blacklisted/">How your email design can get you blacklisted</a></li><li><a href="http://blog.mailchimp.com/articles/stupid-html-email-design-mistakes/">Stupid Email Design Mistakes</a></li><li><a href="http://resources.mailchimp.com/how-to-avoid-spam-filters">How to avoid spam filters</a> (the non-human kind)</li><li><a href="http://blog.mailchimp.com/want-700000-html-email-templates/">Want 700,000 HTML email templates?</a> (more fun w/Mechanical Turk)</li><li><a href="http://blog.mailchimp.com/is-your-email-marketing-human/">Is your email marketing human?</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/research-spammy-email-design-mistakes/feed/</wfw:commentRss> <slash:comments>33</slash:comments> </item> <item><title>Bounce management really is tricky</title><link>http://blog.mailchimp.com/bounce-management-really-is-tricky/</link> <comments>http://blog.mailchimp.com/bounce-management-really-is-tricky/#comments</comments> <pubDate>Fri, 01 Oct 2010 20:25:04 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[Deliverability]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=10324</guid> <description><![CDATA[Deciphering bounce codes can be tricky.]]></description> <content:encoded><![CDATA[<p>A little while ago we talked about some tweaks we made to our bounce management processes, where we factor in previous engagement (<a href="http://blog.mailchimp.com/smarter-bounce-management-with-engagement/">Smarter bounce management rules with engagement</a>). I briefly discussed how tricky deciphering bounce codes can be. So you know we&#8217;re not making this stuff up, check out:</p><ul><li><a href="http://www.suremail.eu/2010/07/14/on-the-classification-of-bounces/" target="_blank">On the Classification of Bounces</a> over at Suremail&#8217;s blog.</li></ul><p><em>Related: <a href="http://resources.mailchimp.com/email-delivery-for-it-professionals">Email Delivery for IT Professionals</a>, a free guide on &#8220;how to build your own MailChimp,&#8221; in our Resources area.</em></p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/bounce-management-really-is-tricky/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 617/731 objects using disk: basic

Served from: blog.mailchimp.com @ 2012-02-09 07:45:34 -->
