<?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; Email Marketing Tips</title> <atom:link href="http://blog.mailchimp.com/tag/email-marketing-tips/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>MailChimp and Media Queries</title><link>http://blog.mailchimp.com/mailchimp-and-media-queries/</link> <comments>http://blog.mailchimp.com/mailchimp-and-media-queries/#comments</comments> <pubDate>Thu, 02 Feb 2012 14:15:38 +0000</pubDate> <dc:creator>Fabio</dc:creator> <category><![CDATA[Email Design]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category> <category><![CDATA[Email Marketing Tips]]></category> <category><![CDATA[HTML email development]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=24841</guid> <description><![CDATA[It&#8217;s no secret that mobile readership of email is skyrocketing. In May of 2011, Return Path released a study in which showed an 81% increase in mobile viewership over the prior 6-month period. Then, in September, Litmus released its own study which bore out many of the same conclusions. Litmus&#8217; number was a little higher: [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s no secret that mobile readership of email is skyrocketing. In May of 2011, <a href="http://www.returnpath.net/blog/intheknow/2011/05/mobile-email-study-finds-81-growth-in-email-activity-on-mobile-ipad-tablet-viewership-increasing/" target="_blank">Return Path released a study</a> in which showed an 81% increase in mobile viewership over the prior 6-month period. Then, in September, <a href="http://litmus.com/blog/email-client-market-share-infograph" target="_blank">Litmus released its own study</a> which bore out many of the same conclusions.</p><p>Litmus&#8217; number was a <em>little</em> higher: 150% over the previous 6 months. I don&#8217;t know what the margin of error is in either study, but even being conservative and splitting the difference between the two numbers nets you a healthy increase. Either way, these numbers show that people are overwhelmingly choosing to view email on their Androids, iPhones, and iPads, and that means finding a way to optimize email for smaller screens.</p><p>All of this is a long-winded way of saying that media queries are a way to optimize email for mobile devices, and MailChimp v6.8 now supports them in the normal campaign workflow.</p><p>Now, chances are that if you do code your own templates, you already know what media queries are, you stopped reading at &#8220;<em>MailChimp v6.8 now supports them in the normal campaign workflow</em>,&#8221; and have moved on to implementing media queries into your templates. For the rest, what follows is an overview of what a media query looks like, how to implement it into your code, and even how to set it up so that you can adjust the media query style rules within MailChimp&#8217;s campaign editor.</p><p><span id="more-24841"></span></p><p>We&#8217;re starting with a simple, blank template&#8230;</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/basictemplatestart.jpg" alt="A lightly-modified version of a basic layout template." /><br /> A lightly-modified version of the &#8220;basic&#8221; template from MailChimp&#8217;s &#8220;basic layouts&#8221; library.</p><p>&#8230;and styling it with basic CSS:</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/basictemplateend.jpg" alt="The basic template, styled and filled with content." /><br /> The same template, after some styling and content.</p><p>If you&#8217;ve never worked with one, the idea behind a media query is basic: it&#8217;s pretty much <a href="http://inception.davepedu.com/" target="_blank">a CSS stylesheet within a CSS stylesheet</a>; a collection of CSS rulesets that are read and rendered when the trigger for the query is hit. Here&#8217;s what the opening lines of a media query look like:</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/queryopen.png" alt="The opening code lines of a CSS media query." /><br /> The opening of the media query.</p><p>The media query contains two important components: &#8220;screen&#8221; and &#8220;max-device-width.&#8221; The &#8220;screen&#8221; component is the media type and the &#8220;only&#8221; is, as the <a href="http://www.w3.org/TR/css3-mediaqueries/#media0" target="_blank">W3C so eloquently puts it</a> a keyword that&#8217;s &#8220;&#8230;used to hide style sheets from older user agents.&#8221; Whatever. The second component, within parentheses, is the actual query; the media feature (max-device-width), along with the trigger value (480px). In short, this media query says &#8220;These styles should only be used for screens, and only when the screen&#8217;s horizontal width is 480px or less.&#8221;</p><p>The W3C Article (or W3C Candidate Recommendation Document, if you&#8217;re feeling fancy) linked above lists out the other media features you can trigger on, but for the purposes of this email template, we&#8217;re only concerned with device-width.</p><p>While you can do all sorts of neat stuff with <a href="http://www.campaignmonitor.com/css/" target="_blank">email-valid CSS</a>, there are three things I&#8217;ll focus on: email width, header image width, and font sizes.</p><p>Since most emails are wider than 480px (the landscape width of the average device), most emails will trigger horizontal scrolling. For the sake of this post, we&#8217;ll assume we don&#8217;t want that. Thus, the two basic ways to change the width are by either setting a hard value like 300px for your email&#8217;s tables, or to set a hard upper limit with max-width, then set table widths to 100%. That&#8217;s what I&#8217;ve done here, targeting each table that gets its width set:</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/emailmaxwidth.png" alt="The style ruleset dictating the width of the email." /><br /> This method lets the email fill the viewport up to a limit of 600px.</p><p>Next, since the header image in this email is also 600px wide, we should scale it down in line with the email&#8217;s total width. The same method used above can be applied to the image (The vendor-specific style rule &#8220;-ms-interpolation-mode:bicubic;&#8221; is there to account for IE7&#8242;s inability to scale images down without making them look horrid):</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/imagemaxwidth.png" alt="The style ruleset dictating the width of the email's header image." /><br /> The header image will fill adjust with the template, to the same limit of 600px.</p><p>Finally, we should increase readability on small screens, so bumping up the font sizes automatically is important. A good rule of thumb is a font size of at least 16px for your copy and 20px for your main headings. That might strike you as big, especially if you send tons and tons of content (which you shouldn&#8217;t). Our friends at <a href="http://www.smashingmagazine.com/2011/10/07/16-pixels-body-copy-anything-less-costly-mistake/" target="_blank">Smashing Magazine</a> posted an article that argues otherwise. The article isn&#8217;t specifically concerned with email, but it&#8217;s relevant and right. For this email, I&#8217;ve bumped the font size up to 18px:</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/fontsize.png" alt="The style ruleset dictating the font size of the copy in the email." /><br /> An 18px font size allows for comfortable reading.</p><p>After adjusting font sizes in the preheader, body, and footer, and adjusting heading sizes, this is what the full media query looks like:</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/fullquery.png" alt="The entire media query stylesheet for this email." /><br /> The full media query stylesheet for this email.</p><p>I&#8217;ve left one detail for last. If you look at the media query styles, you&#8217;ll notice I targeted my tables and table cells using an attribute selector ( table[id="templateContainer"]{&#8230;} ) instead of using the traditional CSS route ( table.templateContainer{&#8230;} ):</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/queryattribute.png" alt="CSS attribute selectors in the media query." /><br /> CSS attribute selectors</p><p>This method, <a href="http://www.campaignmonitor.com/blog/post/3457/media-query-issues-in-yahoo-mail-mobile-email/" target="_blank">discovered by Campaign Monitor</a>, prevents Yahoo! Mail from reading the query styles and rendering them instead of the normal CSS.</p><p>Finally, here&#8217;s what the email looks like on both iPhone (4S) and Android (HTC Incredible):</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/deliveredemails.jpg" alt="What the email looks like on iPhone and Android." /><br /> Some basic media query CSS really helps produce a better mobile email experience.</p><p>Not bad, for such a small amount of work. You can even save yourself a bit more time by marking the CSS rules in your media query with MailChimp&#8217;s template language <em>editable</em> tags. This will allow you to edit the values of your CSS properties when inside the app&#8217;s campaign editor. Simply follow the same pattern already established by the <a href="http://kb.mailchimp.com/article/template-language-creating-editable-template-styles/" target="_blank">template language</a>:</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/editablequeries.png" alt="Media query styles set up with MailChimp's template language." /><br /> Avoid digging into your code every time by making query styles editable in the app.</p><p>You can download and play around with the template I used <a href="http://downloads.mailchimp.com/querytemplate.html" target="_blank">right here</a>. That&#8217;s all I&#8217;ve got. Time to <a href="http://drunkronswanson.com/" target="_blank">dance</a>.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/mailchimp-and-media-queries/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Trend Watch: Animated GIFs in Email</title><link>http://blog.mailchimp.com/trend-watch-animated-gifs-in-email/</link> <comments>http://blog.mailchimp.com/trend-watch-animated-gifs-in-email/#comments</comments> <pubDate>Tue, 13 Jan 2009 19:57:38 +0000</pubDate> <dc:creator>Amanda</dc:creator> <category><![CDATA[Email Design]]></category> <category><![CDATA[Email Marketing Tips]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=2005</guid> <description><![CDATA[A few weeks ago, email marketing expert Mark Brownlow discussed an interesting but quietly growing trend in 2008&#8211; the increasing use of animated GIFs in email. There are likely a couple reasons that this is true. First, animated GIFs appear to function in almost all major email clients, and second, because they seem to work.  [...]]]></description> <content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-2009" style="border: 0pt none; margin-left: 5px; margin-right: 5px;" title="see-hear-shutup-monkey-gif" src="http://blog.mailchimp.com/wp-content/uploads/2009/01/see-hear-shutup-monkey-gif.gif" alt="" width="300" height="105" />A few weeks ago, email marketing expert Mark Brownlow discussed an interesting but quietly growing trend in 2008&#8211; the increasing use of <a href="http://www.email-marketing-reports.com/iland/2008/12/animated-gifs-in-email-advice-and-links.html" target="_blank">animated GIFs in email</a>. There are likely a couple reasons that this is true. First, animated GIFs appear to function in almost all major email clients, and second, because they seem to work.  <strong>A/B tests by BlueFly, for example, <a href="http://www.internetretailer.com/article.asp?id=25876">found</a></strong> <strong>an animated email pulling in 12% more revenue than the non-animated equivalent.</strong></p><p><span id="more-2005"></span></p><p>Brownlow consulted with Tom Buchok, co-founder of <a href="http://www.bannerflow.com/">Bannerflow</a> and Chad White, Research Director at <a href="http://www.smith-harmon.com/">Smith-Harmon</a>, for information about best practices and some relevant examples.</p><p><strong>Q: What benefits can animated GIFs bring to your marketing emails?</strong></p><p>Tom notes that because animated GIFs are used much less frequently in marketing emails, a certain amount of novelty remains&#8211; and novelty can be an asset when trying to get your audience&#8217;s attention. &#8220;More importantly, animated GIFs allow for a more creative message. Retailers can use a single space to highlight multiple products, advertisers can use animation to highlight their call-to-action, or click-throughs-to-video can be easily visualized with an animated GIF.&#8221;</p><p><strong>Q: What kind of things are retailers doing with animated GIFs?</strong></p><p>Chad mentions that animated GIFs seem to appear more often during the November and December holiday season as retailers are trying to &#8220;stand out in the inbox.&#8221; <a href="http://www.email-marketing-reports.com/iland/2008/12/animated-gifs-in-email-advice-and-links.html" target="_blank">Chad gives a number of examples</a>, a couple of which I will mention here.</p><blockquote><p>&#8220;For instance, starting with a <a href="http://www.retailemailblog.com/2008/11/am-inbox-first-animated-holiday-header.html">Nov. 7 email</a>, Williams-Sonoma has been using animation in their header to draw attention to shipping deadlines and other information, but also just to get subscribers to give the email a second look.&#8221;</p><p>&#8220;&#8230;There are definitely opportunities to go-big with animation. One of my favorite examples remains the GIF used by Lands&#8217; End in a <a href="http://www.retailemailblog.com/2008/01/design-hall-of-fame-2007-inductees.html">March 6 email</a> last year. They not only used animation to show off some of the colors that their Beach Trekker Sandal comes in, but they also demonstrated how the Croc-inspired shoe becomes a slider.&#8221;</p></blockquote><p><strong>Q: When are animated GIFs a bad idea?</strong></p><p>Tom notes that one of the main concerns to consider is the GIF&#8217;s file size (in kilobytes). &#8220;Animated GIFs can get significantly larger than their static counterparts, especially as the GIF file includes more and more color.&#8221; Also, if the animation is gratuitous that is going to be detrimental over all&#8211; be sure to keep your objectives in mind and make sure the animation serves those.</p><p><strong>Q: Any compatibility problems with email clients or webmail interfaces?</strong></p><p>Tom: <em><strong>&#8220;With Outlook 2007&#8242;s shift to HTML rendering in Word, rather than IE, animated GIFs do not display.</strong></em> This is the biggest compatibility issue. In Outlook 2007, the first frame is all that appears; designers may want to produce their file so that the first frame contains all the information needed.&#8221; <strong>And as with HTML emails in general, try to design any animated content in such a way that it will fail gracefully.</strong></p><p><a href="http://www.email-marketing-reports.com/iland/2008/12/animated-gifs-in-email-advice-and-links.html" target="_blank">For more info and additional resources, see the original article here</a>.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/trend-watch-animated-gifs-in-email/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Do Not Reply To This Email</title><link>http://blog.mailchimp.com/do-not-reply-to-this-email/</link> <comments>http://blog.mailchimp.com/do-not-reply-to-this-email/#comments</comments> <pubDate>Wed, 16 Jul 2008 16:52:06 +0000</pubDate> <dc:creator>Ben</dc:creator> <category><![CDATA[Emarketing, Business]]></category> <category><![CDATA[Email Marketing Tips]]></category> <category><![CDATA[first email marketing project]]></category> <category><![CDATA[free email marketing guide]]></category><guid isPermaLink="false">http://blog.mailchimp.com/do-not-reply-to-this-email/</guid> <description><![CDATA[Seth Godin&#8217;s got a nice rant about emails that say, &#8220;do not reply to this email, because nobody will read it.&#8221; http://sethgodin.typepad.com/seths_blog/2008/07/if-you-dont-wan.html These emails bug me too&#8212;except maybe some transactional messages. I don&#8217;t exactly expect to hit &#8220;reply&#8221; for an Amazon.com receipt. Anyways, if you&#8217;re sending email marketing (not transactional) messages, you really, really should [...]]]></description> <content:encoded><![CDATA[<p>Seth Godin&#8217;s got a nice rant about emails that say, &#8220;<em>do not reply to this email, because nobody will read it.</em>&#8221;</p><p><a href="http://sethgodin.typepad.com/seths_blog/2008/07/if-you-dont-wan.html" title="Seth's blog" target="_blank">http://sethgodin.typepad.com/seths_blog/2008/07/if-you-dont-wan.html</a></p><p>These emails bug me too&#8212;except maybe <em>some</em> transactional messages. I don&#8217;t exactly expect to hit &#8220;reply&#8221; for an Amazon.com receipt.</p><p>Anyways, if you&#8217;re sending email marketing (not transactional) messages, you really, really should setup a dedicated reply-to email address before you send your first campaign. It&#8217;s a step that we&#8217;ve noticed a lot of newbie email marketers forget, and it&#8217;s exactly why we wrote this free guide:</p><p><a href="http://blog.mailchimp.com/resources/first_email_marketing_project.phtml" title="Your First Email Marketing Campaign">Your First Email Marketing Campaign</a></p><p>It&#8217;s a checklist that covers lots of other little things new email marketers forget to do. Hope you find it useful.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/do-not-reply-to-this-email/feed/</wfw:commentRss> <slash:comments>3</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 321/348 objects using disk: basic

Served from: blog.mailchimp.com @ 2012-02-09 08:01:43 -->
