<?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 Design</title> <atom:link href="http://blog.mailchimp.com/category/email-design/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>Keeping Our Eyes on Video</title><link>http://blog.mailchimp.com/keeping-our-eyes-on-video/</link> <comments>http://blog.mailchimp.com/keeping-our-eyes-on-video/#comments</comments> <pubDate>Wed, 01 Feb 2012 19:20:52 +0000</pubDate> <dc:creator>Joshua</dc:creator> <category><![CDATA[Add-ons & Integrations]]></category> <category><![CDATA[API]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[Emarketing, Business]]></category> <category><![CDATA[IMHO]]></category> <category><![CDATA[Inside MailChimp]]></category> <category><![CDATA[MailChimp API]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[Stats]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=24201</guid> <description><![CDATA[A few years ago MailChimp decided to take video seriously. Well, in the beginning, the videos themselves were never very serious, in fact, quite the opposite. But they have always served a very serious purpose, which is to help our customers learn how to use MailChimp, learn about new features and learn about our awesome [...]]]></description> <content:encoded><![CDATA[<p class=" wp-image-24445" title="Heat maps">A few years ago MailChimp decided to take video seriously. Well, in the beginning, the videos themselves were never very serious, in fact, <a href="http://youtu.be/ouADPnMNAXU" target="_blank">quite the opposite</a>. But they have always served a very serious purpose, which is to help our customers learn how to use MailChimp, learn about new features and <a href="http://mailchimp.com/about/customer-stories/" target="_blank">learn about our awesome customers</a>.</p><p>But how do we know if these videos are doing their job? I get asked that a lot. Well, it&#8217;s all about the stats.</p><p>&nbsp;</p><div id="attachment_24313" class="wp-caption aligncenter" style="width: 490px"><a href="http://blog.mailchimp.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-31-at-4.28.55-PM.png"><img class=" wp-image-24313 " title="Viewership" src="http://blog.mailchimp.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-31-at-4.28.55-PM-440x300.png" alt="" width="480" height="327" /></a><p class="wp-caption-text">Graph of viewership, spiking the day we emailed the Wavelength video.</p></div><p><span id="more-24201"></span><br /> A big part of the using-video-on-your-website mix is the video hosting service that you use. We&#8217;re a long way from 2005 when there was either YouTube, or an .flv or .mov embedded in your webpage. Today&#8217;s video hosting landscape is more like a food court at the airport; Do I want some cheap fast food? Or some cheap fast food posing as cheap healthy food because its on flatbread? Or do I want to spring for that place that looks all dark and leathery with lots of TVs and the $18 hamburger? There are plenty of choices out there, but making the choice of who to go with is not always so cut and dry.</p><p>We&#8217;ve tried out more than our share of hosts these past few years. All have had their pros and cons, their sweet spots and their misgivings. But this year we&#8217;ve moved our content to a new home that looks finally like a place to set down some roots. And that place is <a href="http://www.wistia.com" target="_blank">Wistia</a>.</p><p>Along with a long list of the necessary fundamentals, such as solid service and performance, good support, and an easy workflow, Wistia provides some fun and helpful performance metrics that help us know how our videos are performing, and where there may be room for improvement.</p><p>One of the minor miracles of the internet and the video hosting revolution is that you have access to an abundance of statistics that can show you, down to the second, what your viewing audience is reacting to, and how. If you aren&#8217;t convinced that this is truly miraculous just do a little reading about the complexity and cost of the Nielson rating system for TV shows (<a href="http://en.wikipedia.org/wiki/Nielsen_ratings" target="_blank">viewer diaries, &#8220;Home Units&#8221; and &#8220;people meters&#8221;!</a>), then realize that with the internets we get at least the same amount of information as they do for a minute fraction of what that system cost in terms of time, money, and effort.</p><p>Recently we sent an email campaign to 1.2 million users that announced a new service called Wavelength. In that email, we linked to a video hosted on Wistia, which meant we could go in after the fact to see how it performed. With Wistia&#8217;s metrics, not only can we see the normal stuff like total loads, total views, and average engagement,</p><div id="attachment_24209" class="wp-caption aligncenter" style="width: 510px"><a href="http://blog.mailchimp.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-30-at-5.00.58-PM.png"><img class=" wp-image-24209  " title="wistia stats" src="http://blog.mailchimp.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-30-at-5.00.58-PM-500x297.png" alt="" width="500" height="297" /></a><p class="wp-caption-text">The basic video statistic summary.</p></div><p>but we also get to see these nifty little &#8220;heat maps&#8221; that show each viewers engagement in a neat new way. They also show where in the world the view is from, which is always pretty cool.</p><div id="attachment_24445" class="wp-caption aligncenter" style="width: 490px"><a href="http://blog.mailchimp.com/wp-content/uploads/2012/02/Screen-Shot-2012-01-30-at-5.01.22-PM.png"><img class=" wp-image-24445" title="Heat maps" src="http://blog.mailchimp.com/wp-content/uploads/2012/02/Screen-Shot-2012-01-30-at-5.01.22-PM-500x267.png" alt="" width="480" height="256" /></a><p class="wp-caption-text">Some Wistia heat maps.</p></div><p>The heat maps display a hotter color within the timeline of your video as people scrub or rewind to rewatch any portion of the video. So in a loose sense, we can look for patterns that may tell us what particular points in the video people needed, or wanted to see again. We can also see gaps in the timeline if they skipped sections. Of course interpreting these graphs is a fuzzy science, but if there are similar spots across the viewing audience that see more heat on the map, we can look at that point in the video and consider what was either extra attention grabbing, or maybe extra confusing, our maybe something so incredibly cute that people just couldn&#8217;t help but to watch it over and over again.</p><p>In this case, there wasn&#8217;t a strong pattern of viewing a particular point over and over again, but there was a telltale pattern of fall-off around the 20 second mark. After watching the video again I can see that in the first 20 seconds or so we define what Wavelength does in general terms. After that we launch into more detail. So, many people watched the first twenty seconds and got the gist of it, then switched off.</p><p>Statistics showed that 82% of the video was watched on average, which is actually pretty darn good for a web video that is 1:30 in length. If that number was significantly lower, I would be more concerned about that dropoff pattern 20 seconds in. I would be inclined to go back and rework the script or the treatment to encourage viewers not to leave. How would I do it? Maybe have the narration hint at something coming up later in the video, or possibly add a surprising or entertaining moment which may rekindle interest and buy us a little more time with our viewer. As more people are used to seeing and watching video on the web, convincing them to click the play button is getting easier. Convincing them to stick with the video, however, is actually getting harder imho.</p><p>All these cool metrics can really help us do just that. It&#8217;s simple enough these days to go back into the video and retool it as needed, then export a new version and swap out the last one. This way we can continue to iterate, update, and improve our content as needed. And in my experience, it&#8217;s rare that something that is ultimately a subjective piece of creativity, such as a video, gets so much direct objective feedback from a broad audience. So I&#8217;ve really found these stats to be a huge help as I&#8217;ve continued to create and shape the videos we produce. They&#8217;ve also thickened my skin a good bit.</p><p>Another nice thing about Wistia is how we also get a lot of control over the <a href="http://wistia.com/blog/superembeds-viva-la-revolucion/" target="_blank">look and features of the player.</a></p><div id="attachment_24441" class="wp-caption aligncenter" style="width: 317px"><a href="http://blog.mailchimp.com/wp-content/uploads/2012/02/Screen-Shot-2012-01-31-at-2.04.51-PM.png"><img class="size-full wp-image-24441" title="Custom player controls" src="http://blog.mailchimp.com/wp-content/uploads/2012/02/Screen-Shot-2012-01-31-at-2.04.51-PM.png" alt="" width="307" height="602" /></a><p class="wp-caption-text">Simple player customization tools.</p></div><p>Many hosts allow you only limited control over what color your frame and buttons are, and what controls you can include. It&#8217;s nice to finally have an easy way to make the player look as minimal as we want it to and to be able to color it to match the palette of the page it will live in. It would have been a big bummer to have a bunch of big, off-color controls covering up the eyes and our pretty new logo in the poster frame of the Wavelength video.</p><p>As it so happens, we first learned about Wistia because they contacted us a few years ago when developing their own API thingy between MailChimp and Wistia. It allows you to <a href="http://wistia.com/doc/mailchimp" target="_blank">integrate your video with your email campaign</a>, which is pretty cool . And MailChimp has a Wistia merge tag which allows you to integrate a Wistia video of your own into your email newsletter and take advantage of the awesome statistics. <a href="http://blog.mailchimp.com/updated-wistia-video-integration/#more-12631" target="_blank">Read about it here.</a>  Ben also just wrote a blogpost about how we allow you to <a href="http://blog.mailchimp.com/new-customize-and-automate-video-merge-tags/">customize and automate your video merge tags.</a>  Pretty simple stuff to do, but as you can see below, it may make waves if you actually use it:</p><div id="attachment_24437" class="wp-caption aligncenter" style="width: 490px"><a href="http://blog.mailchimp.com/wp-content/uploads/2012/02/ariana.jpg"><img class=" wp-image-24437" title="Clickmap" src="http://blog.mailchimp.com/wp-content/uploads/2012/02/ariana.jpg" alt="" width="480" height="688" /></a><p class="wp-caption-text">Clickmap of an email newsletter.</p></div><p>This is a MailChimp <a href="http://blog.mailchimp.com/clickmap-email-overlay-reports-in-mailchimp/" target="_blank">click map</a> of the email Ben sent out announcing Wavelength. As you can see, click rates on the text links averaged around 4-8 %, but that video staring atcha there got a whopping 62.8% of all the clicks. Maybe it&#8217;s that hypnotic eye power getting people to watch (I have a proprietary &#8220;hypnotic eye power&#8221; filter; merge tag coming soon!), or maybe it&#8217;s people&#8217;s inclination these days to prefer watching a quick video instead of, or in addition to, reading about something. Whatever it is, it&#8217;s these insightful statistics that help prove this video thing is worth keeping our eyes on.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/keeping-our-eyes-on-video/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Templates for the Holidays</title><link>http://blog.mailchimp.com/templates-for-the-holidays/</link> <comments>http://blog.mailchimp.com/templates-for-the-holidays/#comments</comments> <pubDate>Thu, 08 Dec 2011 21:17:18 +0000</pubDate> <dc:creator>Fabio</dc:creator> <category><![CDATA[Email Design]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[email templates]]></category> <category><![CDATA[holiday email templates]]></category> <category><![CDATA[html email]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=20877</guid> <description><![CDATA[The holiday season is in full swing, and with Christmas and Hanukkah fast-approaching it seems like a good time to highlight some of our related templates. With over 30 holiday-themed templates to choose from, we&#8217;ve got you covered whether you&#8217;re sending out party invitations, selling some of the season&#8217;s most anticipated toys, or just sending [...]]]></description> <content:encoded><![CDATA[<p>The holiday season is in full swing, and with Christmas and Hanukkah fast-approaching it seems like a good time to highlight some of our related templates. With over 30 holiday-themed templates to choose from, we&#8217;ve got you covered whether you&#8217;re sending out party invitations, selling some of the season&#8217;s most anticipated toys, or just sending out a newsletter with a Christmas twist.</p><p><span id="more-20877"></span></p><p>First up is a look at the newest templates in our library: Christmas-themed templates from MailChimp-certified Experts, <a href="http://www.creativemediafarm.com/" target="_blank">Creative Media Farm</a>. This month these fine folks delivered quite a selection, with styles ranging from modern:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/hs_cmf_01.jpg" alt="The 'Modern Christmas' template by Creative Media Farm" /><br /> <figcaption>A clean and modern take on the Christmas theme.</figcaption> </figure><p>To designs like this one, which veers in a more traditional direction:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/hs_cmf_02.jpg" alt="The 'Christmas Stockings' template by Creative Media Farm" /><br /> <figcaption>What&#8217;s more traditional than a fireplace mantle and stockings?</figcaption> </figure><p>Overall, the folks at Creative Media Farm made sure that there plenty of templates for you to choose from:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/hs_cmf_03.jpg" alt="More Christmas templates by Creative Media Farm" /><br /> <figcaption>A few of the templates designed by Creative Media Farm.</figcaption> </figure><p>The Christmas templates above are only part of the number of holiday designs we&#8217;ve got within the pre-designed library. You can also find various designs from MailChimp itself, with a number of designs that are whimsical:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/hs_mc_01.jpg" alt="The 'Gifted Snowmen' template by MailChimp" /><br /> <figcaption>Only Calvin and Hobbes features better-looking snowmen.</figcaption> </figure><p>Or more traditional:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/hs_mc_02.jpg" alt="The 'Holly Ribbon Notecard' template by MailChimp" /><br /> <figcaption>The versatile &#8216;Holly Ribbon Notecard&#8217; template.</figcaption> </figure><p>And it&#8217;s not just Christmas that we cover. You can also find a few Hanukkah templates. And if those designs don&#8217;t pique your interest, the majority of our &#8216;holiday&#8217; templates are flexible in their use, and could work well for <a href="http://www.youtube.com/watch?v=ChmhQz5wsOI" target="_blank">Festivus</a>, <a href="http://en.wikipedia.org/wiki/Saturnalia" target="_blank">Saturnalia</a> (if you happen to be an ancient Roman), or whatever it is you happen to celebrate.</p><p>As always, these and any other pre-designed templates can be found once you create an email campaign and, on step 3 of campaign creation (template selection), navigate to the &#8216;pre-designed&#8217; template category. You&#8217;ll find Christmas, Hanukkah, and the rest of our holiday-themed templates within the &#8216;Holiday&#8217; subcategory. Just pick your desired template and edit away: many are quite flexible in their designs, and allow for a high degree of customization through our template style editor.</p><p>Enjoy. <em>Merry Christmas and happy holidays!</em></p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/templates-for-the-holidays/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Black Friday Templates and Tools</title><link>http://blog.mailchimp.com/black-friday-templates-and-tools/</link> <comments>http://blog.mailchimp.com/black-friday-templates-and-tools/#comments</comments> <pubDate>Tue, 22 Nov 2011 16:15:40 +0000</pubDate> <dc:creator>Fabio</dc:creator> <category><![CDATA[Email Design]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category> <category><![CDATA[email templates]]></category> <category><![CDATA[holiday email templates]]></category> <category><![CDATA[html email]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=20233</guid> <description><![CDATA[With Thanksgiving coming up this week, we&#8217;re all taking time to reflect on what we&#8217;ve got to be happy about and thankful for. And after all of that reflecting, eating, and napping is done, many people dust off their kevlar body armor, hockey helmets, grab their favorite spiked clubs, and put on their trampling shoes, [...]]]></description> <content:encoded><![CDATA[<p>With Thanksgiving coming up this week, we&#8217;re all taking time to reflect on what we&#8217;ve got to be happy about and thankful for. And after all of that reflecting, eating, and napping is done, many people dust off their kevlar body armor, hockey helmets, grab their favorite spiked clubs, and put on their trampling shoes, all in anticipation of Black Friday.</p><p>In preparation, I&#8217;ll take a moment to highlight some templates and tools that can help you capitalize on the biggest consumer day of the year, and I&#8217;ll start with some templates.</p><p><span id="more-20233"></span></p><p>First, a template styled specifically to this task:</p> <figure><img src="http://gallery.mailchimp.com/569c0869e0552eb4cd827f095/images/bftemplate.png" alt="Black Friday email template" /><br /> <figcaption>The cleanly-styled Black Friday template.</figcaption> </figure><p>You can find this template when you create a campaign and, on step 3 (template selection), navigating to &#8216;pre-designed&#8217;, then to &#8216;ecommerce&#8217;, where you&#8217;ll find the &#8216;Black Friday Sale&#8217; template. You can then use the style editor to tweak the design to suit your needs, or just drop in your content and send away.</p><p>Maybe your users need a little more than just a product highlight, however. You can always sweeten the deal by sending out some coupons, using our selection of coupon templates:</p> <figure><img src="http://gallery.mailchimp.com/569c0869e0552eb4cd827f095/images/coupontemplates.png" alt="A variety of coupon templates" /><br /> <figcaption>Two of the fourteen available coupon templates.</figcaption> </figure><p>You can find these guys in the same way: on step 3 of campaign creation, just navigate to &#8216;pre-designed&#8217;, and then selection &#8216;coupons&#8217;. You can use the style editor to customize the design however you&#8217;d like, and each coupon template also includes an example of our <a href="http://kb.mailchimp.com/article/how-do-i-use-the-qr-code-merge-tag/" target="_blank">QR Code merge tag</a>, which you can include to give users a simple way to redeem the coupon&#8217;s value using the <a href="http://mailchimp.com/features/pyow/" target="_blank">Pyow!</a> app.</p><p>Perhaps you&#8217;re looking for a template that&#8217;s a little more &#8216;seasonal&#8217;. If that&#8217;s the case, we&#8217;ve got you covered with our tons of holiday-themed templates:</p> <figure><img src="http://gallery.mailchimp.com/569c0869e0552eb4cd827f095/images/mcholidaytemplates.png" alt="MailChimp holiday templates" /><br /> <figcaption>Thanksgiving-, Hannukah-, and Christmas-themed templates aplenty.</figcaption> </figure><p>The holiday season is ramping up right now (or it&#8217;s running full-bore, if my local Target&#8217;s decorations are any indication), and we have lots of template choices available. We&#8217;ve also got a great selection of Christmas templates on the way, courtesy of our friends (and certified <a href="http://widget.odeskps.com/detail/creativemediafarm/" target="_blank">MailChimp Experts</a>) at <a href="http://creativemediafarm.com/" target="_blank">Creative Media Farm</a>. Here&#8217;s a taste of what we&#8217;ve got coming from them:</p> <figure><img src="http://gallery.mailchimp.com/569c0869e0552eb4cd827f095/images/cmfchristmastemplates.png" alt="Christmas templates by Creative Media Farm" /><br /> <figcaption>It&#8217;s nice having talented friends.</figcaption> </figure><p>Selling stockings from your shop on Etsy? A book on Amazon? Maybe your band has released its latest album of <a href="http://www.youtube.com/watch?v=nUDGJW_9WIM" target="_blank">death metal covers of classic Christmas carols</a> on iTunes, perhaps? You can use our <a href="http://mailchimp.com/features/autoconnect-templates/" target="_blank">Autoconnect templates</a>, which automatically pull your data from these services, saving you some work and letting you send campaigns quickly and easily.</p><p>Armed with this arsenal, you can take advantage of the Black Friday frenzy, but be sure you&#8217;ve set up adequate defenses. Sandbag walls, trenches, and an anti-aircraft gun or two usually does the trick. You know how people can get.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/black-friday-templates-and-tools/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>OnStage, our campaign collaboration tool, gets a facelift</title><link>http://blog.mailchimp.com/onstage-our-campaign-collaboration-tool-gets-a-facelift/</link> <comments>http://blog.mailchimp.com/onstage-our-campaign-collaboration-tool-gets-a-facelift/#comments</comments> <pubDate>Tue, 11 Oct 2011 20:23:28 +0000</pubDate> <dc:creator>Federico</dc:creator> <category><![CDATA[Add-ons & Integrations]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[MailChimp Labs]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[collaboration]]></category> <category><![CDATA[feedback]]></category> <category><![CDATA[onstage]]></category> <category><![CDATA[realtime]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=19037</guid> <description><![CDATA[OnStage is a tool that lets your MailChimp email campaigns take the stage to receive realtime feedback from collaborators and head honchos. We launched it 2 months ago for you to give us some feedback. When Aarron first introduced OnStage, he ended the announcement with this warning: We built OnStage quickly and rather than letting it [...]]]></description> <content:encoded><![CDATA[<p><a href="http://www.onstageapp.com" target="_blank"><br /> </a><a href="http://www.onstageapp.com"><img class="alignright" title="OnStage - A collaborative app for MailChimp campaigns" src="http://blog.mailchimp.com/wp-content/uploads/2011/08/onstage.png" alt="OnStage - A collaborative app for MailChimp campaigns" width="250" height="104" /></a><a href="http://www.onstageapp.com" target="_blank">OnStage</a> is a tool that lets your MailChimp email campaigns take the stage to receive <em>realtime</em> feedback from collaborators and head honchos. We launched it 2 months ago for you to give us some feedback.</p><p>When Aarron <a href="http://blog.mailchimp.com/onstage-an-app-for-collaborative-email-design/">first introduced OnStage</a>, he ended the announcement with this warning:</p><blockquote><p>We built OnStage quickly and rather than letting it languish in a state of perpetual polishing, we’re launching it today, <em>rough edges and all</em>.</p></blockquote><p>We spent the last few weeks working on OnStage to get rid of those rough edges and introduce a few neat features in the process.</p><p><a href="http://blog.mailchimp.com/onstage-our-campaign-collaboration-tool-gets-a-facelift/screen-shot-2011-10-11-at-3-37-50-pm/" rel="attachment wp-att-19077"><img class="alignnone size-full wp-image-19077" title="OnStage gets a facelift!" src="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.37.50-PM.png" alt="" width="500" /></a></p><p><span id="more-19037"></span></p><h3>API Keys, no more!</h3><p>Having to enter your API key every time you wanted to use OnStage was a pain. With our <a href="http://apidocs.mailchimp.com/oauth2/">shiny new implementation of Oauth2</a>, you&#8217;ll be logging into OnStage with your MailChimp credentials instead. Not only is this much more secure, but it&#8217;s <strong>so</strong> much easier for folks that are constantly using OnStage.</p><p>You should find all your previous campaigns, todos, comments, and revisions just like you left them. If you encounter any monkey business, please <a href="https://mailchimp.wufoo.com/forms/onstage-feedback/">let us know</a>!</p><p>As an added bonus, you should not see as many errors regarding emails already being used for OnStage accounts. We&#8217;ve done some reworking of the code to make sure that anyone with any email can collaborate with someone else with OnStage.</p><p><a href="http://blog.mailchimp.com/onstage-our-campaign-collaboration-tool-gets-a-facelift/screen-shot-2011-10-11-at-3-19-19-pm/" rel="attachment wp-att-19053"><img class="alignnone size-full wp-image-19053" title="The new OnStage Login screen" src="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.19.19-PM.png" alt="The new OnStage Login screen" width="500" /></a></p><h3>Oooh, preetty!</h3><p>We have a top-notch team of designers and front-end guys. We grabbed a few of them, stuck them in a dark room, and didn&#8217;t let them out until we had a beautiful new skin for OnStage. The result is something that is much easier on the eyes, but also contains lots of bug fixes for all the poor souls out there using Internet Explorer.</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.47.48-PM.png"><img class="alignnone size-full wp-image-19109" title="OnStage showing off some sexy responsive layouts" src="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.47.48-PM.png" alt="OnStage showing off some sexy responsive layouts" width="500" /></a></p><h3>A few goodies we snuck in there</h3><p>A broken link in an email campaign is like leaving &#8220;sale&#8221; advertisements from the month before plastered on the walls of  your store. We&#8217;ve now added an easy way to check your links from OnStage just by hovering over a link. You&#8217;ll get a nice tooltip that shows you the URL, which you can conveniently click to open that link in a new window.</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.37.18-PM.png"><img class="alignnone size-full wp-image-19081" style="border-width: 2px; border-color: gray; border-style: solid;" title="Awesome link-checking tooltip" src="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.37.18-PM.png" alt="Awesome link-checking tooltip" width="412" height="143" /></a></p><p>A lot of you also were interested in knowing who created each todo. You can now hover over each todo entry to show the name of the creator. For all you interns out there that were getting clever on your todos, your brief period of enjoying the first amendment is now over.</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.18.22-PM.png"><img class="alignnone size-full wp-image-19085" style="border-width: 2px; border-color: gray; border-style: solid;" title="See who created a todo" src="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.18.22-PM.png" alt="See who created a todo" width="500" height="161" /></a></p><p>Lastly, we figured it would be useful to be able to see the current password for the campaign without having to click on the email link. Hover over the &#8220;Invite People&#8221; menu to reveal the current password. If you click on the link, the password will be selected for you, ready for a quick CMD + C (or CTRL + C for you Windows people).</p><p><a href="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.18.10-PM.png"><img class="alignnone size-full wp-image-19089" style="border-width: 2px; border-color: gray; border-style: solid;" title="Easy access to the campaign password" src="http://blog.mailchimp.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-11-at-3.18.10-PM.png" alt="Easy access to the campaign password" width="240" height="164" /></a></p><p>We&#8217;ve got plenty of  ideas on how to make OnStage great, but we can&#8217;t do it without your help and feedback. Let us know what you love, what you hate, and what&#8217;s missing so that we can continue to make OnStage better. We hope it makes your email-sending-world-domination plan just a bit easier on you.</p><p><a href="http://www.onstageapp.com" class="btn orange">Check out OnStage</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/onstage-our-campaign-collaboration-tool-gets-a-facelift/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>21 New Email Templates</title><link>http://blog.mailchimp.com/21-new-email-templates/</link> <comments>http://blog.mailchimp.com/21-new-email-templates/#comments</comments> <pubDate>Thu, 15 Sep 2011 19:31:30 +0000</pubDate> <dc:creator>Fabio</dc:creator> <category><![CDATA[Email Design]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[MailChimp Upgrade]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[html email]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=17449</guid> <description><![CDATA[It&#8217;s that time again, folks: we&#8217;ve added more templates for this month&#8217;s v6.3 release. 21 new templates, to be exact. Here&#8217;s what we&#8217;ve got for you: Newsletter: 12 Non-profit: 9 While we&#8217;ve added another healthy batch of general-use newsletter templates, I think the big blip on the radar here is the expansion of our non-profit [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s that time again, folks: we&#8217;ve added more templates for this month&#8217;s v6.3 release. <strong>21 new templates</strong>, to be exact.</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss1_mosaic_v63.jpg" alt="A mosaic of email templates" /></p><p>Here&#8217;s what we&#8217;ve got for you:</p><ul><li><strong>Newsletter:</strong> 12</li><li><strong>Non-profit:</strong> 9</li></ul><p>While we&#8217;ve added another healthy batch of general-use newsletter templates, I think the big blip on the radar here is the expansion of our non-profit category, with easier-to-use, more stable templates.</p><p><span id="more-17449"></span></p><p>You&#8217;ll find 3 different designs with 3 variations each, but they&#8217;ve all got one focus: getting the word out about your cause, and compelling others to help. To that end, each design features prominent donation buttons and social sharing toolbars. Depending on what your message is, you can either be dramatic in style&#8230;</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss2_nonprofit_v63.jpg" alt="a dramatic non-profit template" /><br /> <figcaption>The dramatically-styled &#8220;Matter International&#8221; template.</figcaption> </figure><p>&#8230;or you can serve up a more muted tone:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss3_nonprofit_v63.jpg" alt="a neutral non-profit template" /><br /> <figcaption>Baby animals. You can never go wrong with baby animals.</figcaption> </figure><p>Or you can ignore the designs altogether and use your own style; as always, the templates are fully customizable.</p><p>That customization is handy, but sometimes you just need to send out content without playing the part of graphic designer. That&#8217;s why we continue to expand the &#8216;Newsletter&#8217; category with a variety of different template options. Need to send a quick note to your subscribers, and want to stay classy? You can use this elegant template:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss4_newsletter_v63.jpg" alt="a simple newsletter template" /><br /> <figcaption>Simple design and refined typography make for a polished look.</figcaption> </figure><p>Maybe you want to send something a little more attention-grabbing in addition to your usual content, like a coupon. We&#8217;ve got you covered:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss5_newsletter_v63.jpg" alt="a coupon block newsletter template" /><br /> <figcaption>Catch a user&#8217;s attention right away with a bold opening section.</figcaption> </figure><p></p><p>Combined with last month&#8217;s <a href="http://blog.mailchimp.com/42-new-email-templates/" target="_blank">batch of 42 templates</a>, and the month prior&#8217;s <a href="http://blog.mailchimp.com/33-new-email-templates/" target="_blank">33 templates</a>, this month&#8217;s 21 templates bring us to a nice 3-month total of 95 new email templates. Not too shabby.</p><p>We&#8217;re already working on next month&#8217;s batch, with more non-profit templates, templates tailored for photographers, some that&#8217;ll work well for real estate listings, some new Halloween and fall-themed templates, and more coming down the pipe. Keep an eye out.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/21-new-email-templates/feed/</wfw:commentRss> <slash:comments>47</slash:comments> </item> <item><title>Visage lets you create personalized images on the fly for your campaigns</title><link>http://blog.mailchimp.com/visage-lets-you-create-personalized-images-on-the-fly-for-your-campaigns/</link> <comments>http://blog.mailchimp.com/visage-lets-you-create-personalized-images-on-the-fly-for-your-campaigns/#comments</comments> <pubDate>Thu, 18 Aug 2011 18:01:14 +0000</pubDate> <dc:creator>Federico</dc:creator> <category><![CDATA[Add-ons & Integrations]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[Emarketing, Business]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[image generation]]></category> <category><![CDATA[merge tags]]></category> <category><![CDATA[personalized email]]></category> <category><![CDATA[visage]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=15761</guid> <description><![CDATA[Do you ever wish you had merge tags that worked on text in your images? The clever guys at Visage figured out a way to do just that with some crazy/cool technology. What&#8217;s even cooler is that it works seamlessly with MailChimp! To personalize an image, Visage generates a custom graphic for each name (or [...]]]></description> <content:encoded><![CDATA[<p>Do you ever wish you had merge tags that worked on text in your images? The clever guys at <a href="http://visage.motobias.com/">Visage</a> figured out a way to do just that with some crazy/cool technology. What&#8217;s even cooler is that it works seamlessly with MailChimp!</p><p><img class="alignnone" title="An image dynamically generated with Visage." src="https://s3.amazonaws.com/motobias_8_11/dea81fc2-2c10-44c2-bc91-55144dbd71bc.jpg" alt="" width="480" height="270" /></p><p><span id="more-15761"></span></p><p>To personalize an image, Visage generates a custom graphic for each name (or other field) on the MailChimp list that you select—now each reader&#8217;s image will have his or her own name magically embedded in the actual image. Neat!</p><p>To use Visage, just sign up (you&#8217;ll need your <a href="https://admin.mailchimp.com/account/api-key-popup">MailChimp API key</a>), and you&#8217;ll be able to get started right away. Currently there are 12 different templates available, ranging from an authentic shake-cam effect road sign to a band flyer posted on a light pole. Here are some examples of what you can make:</p><p><img class="alignnone" title="Visage Generated Image" src="https://s3.amazonaws.com/motobias_8_11/602348da-75a1-4084-8c4b-3608c69df261.jpg" alt="This is an image generated by Visage with my name on it." width="480" /><br /> <img class="alignnone" title="Visage Generated Image" src="https://s3.amazonaws.com/motobias_8_11/5aff17e7-ad24-4e19-a5e0-a17e8f7d0329.jpg" alt="This is an image generated by Visage with my name on it." /><br /> <img class="alignnone" title="Visage Generated Image" src="https://s3.amazonaws.com/motobias_8_11/588e761b-d161-45dc-b64c-6216b67afaa4.jpg" alt="This is an image generated by Visage with my name on it." /></p><p>Visage is currently free of charge, and it allows you to generate 1000 custom images per campaign.</p><p><a class="btn orange small size1of2 center" href="http://visage.motobias.com/" target="_blank">Check out Visage</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/visage-lets-you-create-personalized-images-on-the-fly-for-your-campaigns/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>42 New Email Templates</title><link>http://blog.mailchimp.com/42-new-email-templates/</link> <comments>http://blog.mailchimp.com/42-new-email-templates/#comments</comments> <pubDate>Tue, 16 Aug 2011 20:57:06 +0000</pubDate> <dc:creator>Fabio</dc:creator> <category><![CDATA[Email Design]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[MailChimp Upgrade]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[html email]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=15605</guid> <description><![CDATA[Last month, Aarron showed off 33 new templates that were introduced in the v6.1 release. This month, for v6.2, I&#8217;m showing off an additional 42 new templates that are being added to the pre-designed section of the app&#8217;s email template library. Here&#8217;s what we&#8217;re adding to the library: RSS-to-email: 9 Fitness: 6 Technology (iPhone &#038; [...]]]></description> <content:encoded><![CDATA[<p>Last month, Aarron <a href="http://blog.mailchimp.com/33-new-email-templates/" target="_blank">showed off 33 new templates</a> that were introduced in the v6.1 release. This month, for v6.2, I&#8217;m showing off an additional <strong>42 new templates</strong> that are being added to the pre-designed section of the app&#8217;s email template library.</p><p><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss1_mosaic.jpg" alt="A mosaic of email templates" style="border:1px solid #CCCCCC;" /></p><p>Here&#8217;s what we&#8217;re adding to the library:</p><ul><li><strong>RSS-to-email:</strong> 9</li><li><strong>Fitness:</strong> 6</li><li><strong>Technology (iPhone &#038; Android Showcase):</strong> 12</li><li><strong>Restaurant:</strong> 15</li></ul><p><span id="more-15605"></span></p><p>For this release, our focus was on creating some template variations for a category we felt was very under-represented within the library: restaurants. To that end, five designs were created and three variations for each of those designs were built, for a grand total of 15 templates.</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss2_restaurants.jpg" alt="Two restaurant templates" style="border:1px solid #CCCCCC;" /><br /> <figcaption>Two examples of restaurant template designs.</figcaption> </figure><p>These templates allow quite a bit of design leeway to make it easy for you to match your branding, whether you own a coffee shop or a burger bar. While we&#8217;re on the subject of entrepreneurship, let&#8217;s talk about the new iPhone and Android templates:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss3_androdiphone.jpg" alt="An Android template and an iPhone template" style="border:1px solid #CCCCCC;" /><br /> <figcaption>Individual templates for Android and iPhone platforms.</figcaption> </figure><p>Using these guys, you can quickly get a campaign for your new app up and running, using a simple and elegant template design that puts your work up-front and center-stage without you having to expend too much effort.</p><p>Maybe you run a small gym or hold yoga classes. If so, boy, are you in luck! We&#8217;ve added a new pre-designed category, fitness, and its first batch of templates. You&#8217;ll find six templates that let you send out class schedules, news, and featured content to your subscribers:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss4_fitness.jpg" alt="Two fitness templates" style="border:1px solid #CCCCCC;" /><br /> <figcaption>Two template designs for the all-new &#8216;fitness&#8217; category.</figcaption> </figure><p>Each template can be easily changed to fit your branding needs while still retaining a nice, clean design that will hold together across email clients.</p><p>For those of you who publish RSS content straight into an email campaign, we&#8217;ve added a collection of RRS-to-email templates that are easy to style and are pre-filled with the all of the merge tags you need for a solid RSS-based campaign:</p> <figure><img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/ss5_rsstoemail.jpg" alt="Two rss-to-email templates" style="border:1px solid #CCCCCC;" /><br /> <figcaption>Two ready-to-go RSS-to-email templates</figcaption> </figure><p>We&#8217;ve also moved our Designer Templates &#8211; emails designed by web design titans like Veerle Pieters, Mike Kus, and Matthew Smith &#8211; out of their &#8220;Premium&#8221; section, making them available to everyone for free within the pre-designed library.</p><p>Finally, we&#8217;ve created an expanded look at our <a href="http://mailchimp.com/features/email-template-gallery/" target="_blank">email template gallery</a>, showcasing the hundreds of customizable email templates available within the application, made for everyone from beginners to veterans of HTML email.</p><p>Spin those campaigns up and keep an eye out as more templates keep streaming in &#8211; we&#8217;re not done by a longshot.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/42-new-email-templates/feed/</wfw:commentRss> <slash:comments>14</slash:comments> </item> <item><title>33 New Email Templates</title><link>http://blog.mailchimp.com/33-new-email-templates/</link> <comments>http://blog.mailchimp.com/33-new-email-templates/#comments</comments> <pubDate>Wed, 20 Jul 2011 13:00:44 +0000</pubDate> <dc:creator>Aarron</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[email templates]]></category> <category><![CDATA[templates]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=14038</guid> <description><![CDATA[<p> On your next foray into the campaign builder you'll notice that we've just released a whole bunch of new templates&emdash;33 to be exact. We <a href="http://blog.mailchimp.com/v6-0-launching-monday/" target="_blank">released six new templates in June</a>, which brings our grand total of new templates in the past few weeks to just shy of 40.</p>]]></description> <content:encoded><![CDATA[<p> On your next foray into the campaign builder you&#8217;ll notice that we&#8217;ve just released a whole bunch of new templates&#8212;<strong>33 templates</strong> to be exact. We <a href="http://blog.mailchimp.com/v6-0-launching-monday/" target="_blank">released six new templates in June</a>, which brings our grand total of new templates in the past few weeks to just shy of 40.</p> <figure><img src="http://blog.mailchimp.com/wp-content/uploads/2011/07/newsletter.png" alt="" title="" width="500" height="765" style="border:1px solid #ddd;" /><br /> <figcaption>Figure 1. A new color field newsletter template.</figcaption> </figure><p><span id="more-14038"></span></p><p>Here&#8217;s a quick breakdown of the templates you&#8217;ll find in the latest release:</p><ul><li><strong>Stationery</strong>: 6</li><li><strong>Coupons</strong>: 12</li><li><strong>Inspirational</strong>: 6</li><li><strong>Newsletter</strong>: 3</li><li><strong>Eventbrite</strong>: 3</li><li><strong>SurveyMonkey</strong>: 3</li></ul><p>Use the new stationery templates to send professional letters from the head honcho or quick updates to your subscribers on projects in the works <strong>(figure 2)</strong>. If you run a retail store or an ecommerce site, the new coupon templates are going to be really handy as we approach back to school and the holiday season <strong>(figure 4)</strong>. These puppies have <a href="http://kb.mailchimp.com/article/how-do-i-use-the-qr-code-merge-tag/" target="_blank">QR Code merge tags</a> built in so you can create a discount, then use our <a href="http://mailchimp.com/features/pyow/" target="_blank">Pyow iPhone app</a> to handle the redemption at your store.</p> <figure><img src="http://blog.mailchimp.com/wp-content/uploads/2011/07/stationery.png" alt="" title="" width="500" height="667" style="border:1px solid #ddd;" /><br /> <figcaption>Figure 2. A selection of the new stationery templates.</figcaption> </figure><p>The color field newsletter templates are easily customized using color themes <strong>(figure 1)</strong>. Pop a photo into the header and you&#8217;ve got an elegant template with very little time invested.</p> <figure><img src="http://blog.mailchimp.com/wp-content/uploads/2011/07/insiration.png" alt="" title="" width="500" height="667" style="border:1px solid #ddd;" /><br /> <figcaption>Figure 3. Some of the new inspiration templates</figcaption> </figure> <figure><img src="http://blog.mailchimp.com/wp-content/uploads/2011/07/coupon.png" alt="" title="coupon" width="500" height="667" style="border:1px solid #ddd;" /></p> <figcaption>Figure 4. A few of the new coupon templates</figcaption> </figure><p>We&#8217;ve also updated the Eventbrite templates <strong>(figure 5)</strong>. If you&#8217;re promoting events through <a href="http://blog.mailchimp.com/eventbrite-integration-with-mailchimp/" target="_blank">Eventbrite, you can connect your MailChimp account</a> to send custom emails to attendees.</p> <figure><img src="http://blog.mailchimp.com/wp-content/uploads/2011/07/auto-connect.png" alt="" title="" width="500" height="667" class="alignnone size-full wp-image-14051" /><br /> <figcaption>Figure 3. Eventbrite and SurveyMonkey auto-connect templates.</figcaption> </figure><p>Simian powers unite with this release as we&#8217;ve introduced three new autoconnect templates that let you connect your SurveyMonkey surveys to MailChimp to send fancy invitations to your surveys <strong>(figure 5)</strong>. You can learn a little more about our <a href="http://www.surveymonkey.com/mp/lp/mailchimplanding" target="_blank">SurveyMonkey integration over here</a>.</p><p>We have <strong>a lot</strong> more templates in the works too. This is just the beginning. If you&#8217;re into designing and coding your own templates, don&#8217;t forget to check out our <a href="https://github.com/mailchimp/Email-Blueprints" target="_blank">Email Blueprint project over on Github</a>, which contains 35 layouts (including some mobile friendly templates) that have been tested in all major email clients.</p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/33-new-email-templates/feed/</wfw:commentRss> <slash:comments>28</slash:comments> </item> <item><title>Introducing Mail Designer 1.1 with MailChimp Templates</title><link>http://blog.mailchimp.com/introducing-mail-designer-1-1-with-mailchimp-templates/</link> <comments>http://blog.mailchimp.com/introducing-mail-designer-1-1-with-mailchimp-templates/#comments</comments> <pubDate>Tue, 19 Jul 2011 17:53:47 +0000</pubDate> <dc:creator>Federico</dc:creator> <category><![CDATA[Add-ons & Integrations]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[Email Design]]></category> <category><![CDATA[MailChimp News]]></category> <category><![CDATA[Plugins]]></category> <category><![CDATA[Tips, Tricks, Best Practices]]></category> <category><![CDATA[desktop]]></category> <category><![CDATA[mac]]></category> <category><![CDATA[mail designer]]></category><guid isPermaLink="false">http://blog.mailchimp.com/?p=14154</guid> <description><![CDATA[The Equinux team has been hard at work building the latest version of Mail Designer. The thing is, now it works with MailChimp! Mail Designer is a Mac app that lets you author great-looking emails without worrying about HTML, tables (eek!), and other geek-related topics. Starting with Mail Designer 1.1, you can now export the [...]]]></description> <content:encoded><![CDATA[<p>The <a href="http://www.equinux.com/us/products/maildesigner/index.html" target="_blank">Equinux</a> team has been hard at work building the latest version of Mail Designer. The thing is, now it works with MailChimp! Mail Designer is a Mac app that lets you author great-looking emails without worrying about HTML, tables (eek!), and other geek-related topics.</p><p><img class="alignnone" title="A sample email being created in Mail Designer." src="http://static.mailchimp.com/www/images/canhaz/mail-designer/mail-designer_1.jpg" alt="A sample email being created in Mail Designer." width="500" height="384" /></p><p><span id="more-14154"></span></p><p>Starting with <a href="http://www.equinux.com/us/products/maildesigner/index.html" target="_blank">Mail Designer 1.1</a>, you can now export the emails that you author to a MailChimp template with just a couple of clicks!</p><p><img class="alignnone" title="Sending a Mail Designer creation to MailChimp just takes a couple of clicks!" src="http://static.mailchimp.com/www/images/canhaz/mail-designer/mail-designer_2.jpg" alt="Sending a Mail Designer creation to MailChimp just takes a couple of clicks!" width="500" height="384" /></p><p>We are really excited that Mail Designer now works with MailChimp. It looks to be a great option for our customers that don&#8217;t enjoy coding HTML or would like an alternative to the MailChimp campaign editor.</p><p><a href="http://blog.mailchimp.com/introducing-mail-designer-1-1-with-mailchimp-templates/screen-shot-2011-07-19-at-3-01-46-pm/" rel="attachment wp-att-14164"><img class="alignnone size-full wp-image-14164" title="Some of the designs that come with Mail Designer" src="http://blog.mailchimp.com/wp-content/uploads/2011/07/Screen-shot-2011-07-19-at-3.01.46-PM.png" alt="Some of the designs that come with Mail Designer" width="500" height="366" /></a></p><p>The best part of this integration is that the text from the campaigns you export from Mail Designer are fully editable in the MailChimp campaign editor. Just in case you need to make last-minute changes.</p><p><a href="http://www.equinux.com/us/products/maildesigner/index.html" target="_blank">Learn more about Mail Designer</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.mailchimp.com/introducing-mail-designer-1-1-with-mailchimp-templates/feed/</wfw:commentRss> <slash:comments>23</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 689/787 objects using disk: basic

Served from: blog.mailchimp.com @ 2012-02-09 04:00:41 -->
