<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Litmus</title>
	
	<link>http://litmus.com/blog</link>
	<description>Blog</description>
	<lastBuildDate>Wed, 01 Feb 2012 21:12:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sitevista" /><feedburner:info uri="sitevista" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><item>
		<title>The Best Way to Code Background Colors for HTML Email</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/aIBATxgHuYA/background-colors-html-email</link>
		<comments>http://litmus.com/blog/background-colors-html-email#comments</comments>
		<pubDate>Wed, 01 Feb 2012 01:36:03 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Tips & Resources]]></category>
		<category><![CDATA[background colors]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[code fix]]></category>
		<category><![CDATA[email design]]></category>
		<category><![CDATA[html email]]></category>
		<category><![CDATA[quick tip]]></category>
		<category><![CDATA[rendering]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=774</guid>
		<description><![CDATA[Ever get so frustrated with coding HTML email that you start seeing red? In the past couple weeks we&#8217;ve heard from a handful of red-eyed users reporting Gmail tests that are seeing black by showing up in &#8230; <br /><a href="http://litmus.com/blog/background-colors-html-email" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Ever get so frustrated with coding HTML email that you start <a href="http://www.phrases.org.uk/meanings/see-red.html">seeing red</a>? In the past couple weeks we&#8217;ve heard from a handful of red-eyed users reporting Gmail tests that are seeing black by showing up in inboxes with a black background (when that wasn&#8217;t your intended result!)</p>
<p>After digging into some testing, I realized that this issue isn&#8217;t limited to Gmail—in fact it affects a number of different clients depending on how you apply background colors in your code. As with anything HTML email related, this can be super frustrating since standard web code won&#8217;t always work the way you anticipate when sent to an email client.</p>
<p>Read on to get the scoop and find the one fail safe way to code background colors for consistent results across the board.</p>
<h4>How to code a background color? Let me count the ways&#8230;</h4>
<p>Usually, background colors are applied to a few common HTML elements: <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;body&gt;</span> <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;table&gt;</span> <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;td&gt;</span> <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;div&gt;</span> and <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;a&gt;</span>. Depending on your experience and coding style, you might use one of six (yes, six) different ways to apply background colors to elements in your email:</p>
<ul>
<li>Using the HTML <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">bgcolor</span> attribute with a 3-digit hexadecimal color code</li>
<li>Using the HTML <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">bgcolor</span> attribute with a 6-digit hexadecimal color code</li>
<li>Using the HTML <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">bgcolor</span> attribute with an RGB color value</li>
<li>Using the <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">background-color</span> CSS property with a 3-digit hexadecimal color code</li>
<li>Using the <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">background-color</span> CSS property with a 6-digit hexadecimal color code</li>
<li>Using the <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">background-color</span> CSS property with an RGB color value</li>
</ul>
<p>Since we&#8217;re talking about HTML email here, I&#8217;m going to skip over any discussion of the pros, cons or merits to each method. Suffice to say there are a lot of variables here!</p>
<h4>Three digit HEX codes in email</h4>
<p>I discovered right away that using 3-digit, or shorthand, HEX colors are not a great idea. When 3-digit HEX codes are used in <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;table&gt;</span> and <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;td&gt;</span> tags, black (or sometimes blue!) backgrounds result, with no regard to the color specified:</p>
<p><img class="alignnone size-full wp-image-780" title="Black Background in Gmail" src="http://litmus.com/blog/wp-content/uploads/2012/02/black-background-gmail.png" alt="Black Background in Gmail" width="540" height="512" /></p>
<p><img class="alignnone size-full wp-image-791" title="Three digit HEX color in Blackberry" src="http://litmus.com/blog/wp-content/uploads/2012/02/blackberry-three-digit-hex-cell.png" alt="" width="540" height="232" /></p>
<h4>RGB values in email</h4>
<p>RGB values didn&#8217;t fare much better, resulting in a few lovely shades of green (despite specifying values for white and gray):</p>
<p><img class="alignnone size-full wp-image-792" title="RGB values in table cells" src="http://litmus.com/blog/wp-content/uploads/2012/02/RGB-values-cell.png" alt="" width="540" height="70" /></p>
<p>In some cases, RGB values used with the HTML <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">bgcolor</span> attribute didn&#8217;t show up at all.</p>
<h4>The best way to code a background color</h4>
<p>After all the tests were completed, the verdict was in. The most reliable way of coding background colors is to use the HTML <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">bgcolor</span> attribute with a 6-digit HEX code:</p>
<p style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;table border=&#8221;0&#8243; cellpadding=&#8221;0&#8243; cellspacing=&#8221;0&#8243; width=&#8221;600&#8243; bgcolor=&#8221;#ffffff&#8221;&gt;</p>
<p style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">&lt;td bgcolor=&#8221;#ffffff&#8221;&gt;</p>
<p>Of course, there are dozens of factors involved. Depending on the specific breakdown of the mail clients your audience is using, CSS <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">background-color</span> with a 6-digit HEX code is very reliable as well. The HTML <span style="font-family: monospace; font-size: 14px; color: #333333; background-color: #fcf9ce;">bgcolor</span> attribute simply has the best support across the board. While some methods work consistently in certain elements, I&#8217;d personally prefer to stick to one background color strategy rather than trying to keep specific background color quirks straight. For simplicity, old school HTML and 6-digit HEX codes are where it&#8217;s at.</p>
<h4><strong>Testing methodology</strong></h4>
<p>I ran the tests used as the basis for this article using Firefox 10, Chrome 16 and Internet Explorer 9 (both PC and Mac where appropriate). I manually checked Gmail (both old and new UI versions), Hotmail, AOL and Yahoo, and used Litmus&#8217; <a href="http://litmus.com/email-previews">Email Previews</a> to check rendering on desktop and mobile email clients.</p>
<h4>Tools for understanding your audience and testing display quirks</h4>
<p>You can run your own tests to check rendering and display in 30+ email clients in just a few minutes with <a href="http://litmus.com/email-previews">Email Previews</a> from Litmus. Before testing, be sure you know which clients your subscribers use most often by running <a href="http://litmus.com/email-analytics">Email Analytics</a> on your next campaign.</p>
<p>Sign up for a <a href="http://litmus.com/pricing">free 7-day trial</a> of Litmus today!</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/aIBATxgHuYA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/background-colors-html-email/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/background-colors-html-email</feedburner:origLink></item>
		<item>
		<title>New Gmail UI &amp; IE8 for Webmail Testing</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/9dySlrEayF0/new-gmail-ui-ie8-webmail-testing</link>
		<comments>http://litmus.com/blog/new-gmail-ui-ie8-webmail-testing#comments</comments>
		<pubDate>Tue, 17 Jan 2012 17:51:12 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Features & Updates]]></category>
		<category><![CDATA[email testing]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[platforms]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[webmail testing]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=763</guid>
		<description><![CDATA[As always, there&#8217;s cool stuff happening here at Litmus. Recently, we made a few updates that reflect changes around the interwebs. New Gmail UI Gmail announced a significant overhaul to their User Interface late last year, and have recently upgraded &#8230; <br /><a href="http://litmus.com/blog/new-gmail-ui-ie8-webmail-testing" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>As always, there&#8217;s cool stuff happening here at Litmus. Recently, we made a few updates that reflect changes around the interwebs.</p>
<h4>New Gmail UI</h4>
<p>Gmail <a href="http://gmailblog.blogspot.com/2011/11/gmails-new-look.html">announced</a> a significant overhaul to their User Interface late last year, and have recently upgraded all accounts to the new look. We&#8217;ve also followed suit, enabling the new look in all our Gmail screenshots.</p>
<p><img class="size-full wp-image-765 alignnone" title="New Gmail UI" src="http://litmus.com/blog/wp-content/uploads/2012/01/gmail-new-ui.png" alt="New Gmail UI" width="540" height="405" /></p>
<p>New Gmail UI</p>
<p><img class="alignnone size-full wp-image-764" title="Old Gmail UI" src="http://litmus.com/blog/wp-content/uploads/2012/01/gmail-old-ui.png" alt="Old Gmail UI" width="540" height="351" /></p>
<p>Old Gmail UI</p>
<p>At the Official Gmail Blog, there is a wealth of insight into Gmail&#8217;s new look, including some behind-the-scenes info <a href="http://gmailblog.blogspot.com/2011/12/designing-gmails-new-left-navigation.html">designing</a> and <a href="http://gmailblog.blogspot.com/2011/11/how-real-users-helped-us-develop-gmails.html">testing</a> the new UI. It&#8217;s worth a read if you&#8217;re into <a href="http://gmailblog.blogspot.com/2011/11/changing-information-density-in-gmails.html">responsive design</a>, UX and development.</p>
<h4>IE8 for All Webmail Tests</h4>
<p>One of the best parts about using Litmus for <a href="http://litmus.com/email-previews">email testing</a> is that we include screenshots of how your email looks in both Internet Explorer and Firefox. That&#8217;s because there can be differences in rendering for webmail clients like Gmail, Hotmail, Yahoo! and AOL, depending on the browser your subscribers are using to check their mail. We&#8217;ve recently updated all IE webmail tests to run on Internet Explorer 8.</p>
<p>We hope you enjoy these changes and find them useful!</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/9dySlrEayF0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/new-gmail-ui-ie8-webmail-testing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/new-gmail-ui-ie8-webmail-testing</feedburner:origLink></item>
		<item>
		<title>Are Tablets Taking Over?</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/YiXxeRQ1zjg/tablet-infographic</link>
		<comments>http://litmus.com/blog/tablet-infographic#comments</comments>
		<pubDate>Tue, 10 Jan 2012 20:54:14 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Infographs]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Kindle Fire]]></category>
		<category><![CDATA[market share]]></category>
		<category><![CDATA[PlayBook]]></category>
		<category><![CDATA[tablets]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=701</guid>
		<description><![CDATA[When Apple launched the iPad in 2010, it was a huge success. Without many comparable competitors, the iPad enjoyed a large slice of market share for many months. Recently, the tablet market has widened a bit with &#8230; <br /><a href="http://litmus.com/blog/tablet-infographic" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>When Apple launched the iPad in 2010, it was a huge success. Without many comparable competitors, the iPad enjoyed a large slice of market share for many months. Recently, the tablet market has widened a bit with the release of Amazon&#8217;s new Kindle Fire: analysts are seeing a drop in Apple&#8217;s share of the tablet market.</p>
<p>In a study from September last year, ComScore found that 75% of tablet owners accessed email on their device that month and 35% read email almost every day. Blackberry also <a href="http://www.foxbusiness.com/technology/2012/01/10/ces-2012-rim-announces-20-update-for-blackberry-playbook/">announced support for email</a> on its PlayBook tablet just today. The email app will incorporate feeds from social media sties such as Twitter and LinkedIn, creating a &#8220;social hub.&#8221; As more low-cost tablets enter the market, I&#8217;m eager to see how email behavior is shaped by tablet ownership and apps that further blur the lines between messaging sources.</p>
<p>Click on the graphic below for an enlarged view:</p>
<p><a href="http://litmus.com/blog/tablet-infographic/are-tablets-taking-over" rel="attachment wp-att-703"><img class="alignnone size-large wp-image-703" title="Are Tablets Taking Over?" src="http://litmus.com/blog/wp-content/uploads/2012/01/are-tablets-taking-over-540x2135.png" alt="Are Tablets Taking Over?" width="540" height="2135" /></a></p>
<h4>More resources</h4>
<p>Read more from the sources used for this infograph:</p>
<p>ComScore&#8217;s <a href="http://www.comscore.com/Press_Events/Presentations_Whitepapers/2011/Digital_Omnivores">Digital Omnivores</a>: How Tablets, Smartphones and Connected Devices are Changing U.S. Digital Media Consumption Habits</p>
<p><a href="http://www.businessinsider.com/how-people-really-use-the-ipad-our-exclusive-survey-results-2011-5">How people really use the iPad</a>: A survey from Business Insider</p>
<p>Nielsen: <a href="http://blog.nielsen.com/nielsenwire/online_mobile/changing-demographics-of-tablet-and-ereader-owners-in-the-us/">Changing Demographics of Tablet and eReader Owners in the US</a></p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/YiXxeRQ1zjg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/tablet-infographic/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/tablet-infographic</feedburner:origLink></item>
		<item>
		<title>Introducing Justin</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/F_wdlN8zITs/introducing-justin</link>
		<comments>http://litmus.com/blog/introducing-justin#comments</comments>
		<pubDate>Thu, 05 Jan 2012 22:22:37 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Staff]]></category>
		<category><![CDATA[justin]]></category>
		<category><![CDATA[staff]]></category>
		<category><![CDATA[team]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=695</guid>
		<description><![CDATA[We&#8217;re excited to start 2012 and introduce you to Justin Fyles, the newest member of the Litmus team! Meet Justin, Senior Developer A New England native, Justin grew up in Portsmouth, New Hampshire before heading to Worcester Polytechnic &#8230; <br /><a href="http://litmus.com/blog/introducing-justin" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p><strong>We&#8217;re excited to start 2012 and introduce you to Justin Fyles, the newest member of the Litmus team!</strong></p>
<h4>Meet Justin, Senior Developer<img class="alignright size-full wp-image-696" title="Introducing Justin!" src="http://litmus.com/blog/wp-content/uploads/2012/01/justin-polaroid.png" alt="" width="256" height="305" /></h4>
<p>A New England native, Justin grew up in Portsmouth, New Hampshire before heading to Worcester Polytechnic Institute for college. After graduation, he spent 2.5 years working as a software engineer on internal marketing applications. Justin joins <a href="http://litmus.com/blog/florin-and-brendan">Brendan and Florin</a> as the 3rd developer coding behind the scenes at Litmus, and he&#8217;ll be working on some exciting new features that will help you preview and troubleshoot campaigns like never before.</p>
<p>We can already tell that Justin&#8217;s going to fit right in. He loves music (even plays guitar), seeing live shows, and skiing—he claims he was on the slopes as soon as he could walk! And following <a href="http://litmus.com/meet-the-team">Matt&#8217;s lead</a>, he also has some unique pet peeves: an aversion toward breakfast foods and shampoo bottles with price tags on them.</p>
<p>Welcome, Justin!</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/F_wdlN8zITs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/introducing-justin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/introducing-justin</feedburner:origLink></item>
		<item>
		<title>Graymail Features Roll Out to Hotmail Users</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/_2RDxmVIbTU/graymail-features-roll-out</link>
		<comments>http://litmus.com/blog/graymail-features-roll-out#comments</comments>
		<pubDate>Wed, 21 Dec 2011 21:40:25 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Observations]]></category>
		<category><![CDATA[deliverability]]></category>
		<category><![CDATA[graymail]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[inbox filters]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=671</guid>
		<description><![CDATA[After announcing their &#8220;graymail&#8221; initiative in October this year, Hotmail started implementing changes and new features in customers&#8217; inboxes last week. Here&#8217;s a quick rundown of some of the things you can expect to see in your &#8230; <br /><a href="http://litmus.com/blog/graymail-features-roll-out" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>After announcing their &#8220;graymail&#8221; initiative in October this year, Hotmail started implementing changes and new features in customers&#8217; inboxes last week. Here&#8217;s a quick rundown of some of the things you can expect to see in your Hotmail account.</p>
<h4>Persistent Flags</h4>
<p>I received an email from Hotmail on 12/16 that contained an overview of the new flagging behaviors in my inbox. Rather than getting lost in the shuffle, flagged messages remain &#8220;on top&#8221; even as newer emails arrive in my Hotmail account. I find this feature pretty handy as I usually flag To Do items in my inbox:</p>
<p><img class="alignnone size-full wp-image-672" title="Hotmail Flags" src="http://litmus.com/blog/wp-content/uploads/2011/12/hotmail-flags.png" alt="" width="540" height="337" /></p>
<h4>Categorization</h4>
<p>I noticed that some bulk emails were automatically categorized as &#8220;Newsletter&#8221; although they are not being moved from my inbox. I could choose to view all messages of a particular category, however:</p>
<p><img class="alignnone size-full wp-image-673" title="hotmail-newsletters" src="http://litmus.com/blog/wp-content/uploads/2011/12/hotmail-newsletters.png" alt="" width="540" height="162" /></p>
<p>In addition to the Newsletter category, there are also categories for Bills, Family, Groups, Important, Office docs, Photos, Shipping Updates, Shopping, Social updates and Travel. Facebook and Twitter notifications were automatically classified as Social updates but remained in my inbox unless I moved them on my own or ran a cleanup operation.</p>
<h4>Schedule Cleanup</h4>
<p>Schedule cleanup is perhaps the most innovative of all the features to roll out. This allows you to easily set up new rules on your account, and efficiently cleans up old messages from your inbox. After selecting a newsletter from my inbox and selecting Schedule cleanup from the Sweep menu, I had options to keep only the most recent message, delete old messages or move old messages to a new or existing folder:</p>
<p><img class="alignnone size-full wp-image-675" title="hotmail-schedule-cleanup" src="http://litmus.com/blog/wp-content/uploads/2011/12/hotmail-schedule-cleanup.png" alt="" width="540" height="256" /></p>
<p>Users should be aware that the use of Schedule cleanup also creates a new rule that runs the cleanup operation selected on an ongoing basis:<img class="alignnone size-full wp-image-676" style="margin: 10px 0 0 0; border: 1px solid #777777;" title="hotmail-new-rule" src="http://litmus.com/blog/wp-content/uploads/2011/12/hotmail-new-rule.png" alt="" width="540" height="46" /></p>
<p>If you&#8217;d like to modify rules, you&#8217;ll need to delete the rule and add it again through the Sweep menu. Rules can be deleted by choosing &#8220;Manage rules&#8221; from the Sweep menu, or by selecting one of the messages from that sender and choosing Schedule cleanup again, where you&#8217;ll have the option to stop cleaning up that sender&#8217;s messages.</p>
<h4>The Impact</h4>
<p>From what I can tell, persistent flags are the only feature that has been automatically enabled by Hotmail. Sweep and Schedule cleanup require action on behalf of the user before messages are moved. While some types of communications are assigned suggested categories, they remain in the inbox as usual. Hotmail also mentions the launch of One-Click Unsubscribe in their <a href="http://windowsteamblog.com/windows_live/b/windowslive/">blog post</a>, although none of the newsletters or bulk emails in my Hotmail account had this option under the Sweep menu. This may explain why only flagging was covered in the email sent out by the Hotmail team.</p>
<p>Schedule cleanup has the most potential to be game-changing for marketers, as consumers can automate the removal of older messages from their inbox. At a minimum, the latest (most recent) message from a sender will remain in the user&#8217;s inbox. It&#8217;s also important to note that Hotmail is not automatically filtering messages. Rather, users must initiate cleanup actions. In contrast to some other email filtering tools, cleanup actions and their associated rules are not diverting new messages from the inbox. Schedule cleanup appears to give users a unique way to keep older messages organized and their inbox under control.</p>
<p>Only time will tell how users will adopt these new features and create rules to automate cleanup actions!</p>
<h4>Graymail Discussion</h4>
<p>Since Hotmail is one of the largest free webmail providers in the world, you can expect that a new feature rollout might generate some discussion. Anxiety from marketers on the potential impact these changes might mean for their email programs is chief among the concerns.</p>
<ul>
<li>An update from Hotmail on some of the new graymail-fighting features: <a href="http://windowsteamblog.com/windows_live/b/windowslive/">Ten new reasons to love Hotmail</a></li>
<li>A marketer plans to segment Hotmail users to see how response rates change, a Forrester analyst weighs in, and an ESP gives some advice in this article from Direct Marketing News: <a href="http://www.dmnews.com/new-hotmail-inbox-tools-make-it-easier-for-users-to-hide-marketing-newsletters/article/217247/">New Hotmail inbox tools make it easier for users to hide marketing newsletters</a></li>
<li>Deliverability experts at Word to the Wise say marketers must &#8220;Adapt or Die&#8221; to consumer-driven changes at Hotmail: <a href="http://blog.wordtothewise.com/2011/12/email-marketing-of-the-future/">Email Marketing of the Future</a></li>
<li>Editor and journalist Ken Magill believes that marketers should send people messages they want: <a href="http://www.magillreport.com/Hotmail-Changes-Cause-a-Ruckus-Or-So-Im-Told/">Hotmail Changes Cause a Ruckus &#8230; Or So I&#8217;m Told</a></li>
</ul>
<h4>Infographic</h4>
<p>You may find our <a href="http://litmus.com/blog/hotmail-graymail-infograph">comprehensive infographic</a> on graymail useful as you evaluate your marketing efforts or perhaps your own Hotmail account!</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/_2RDxmVIbTU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/graymail-features-roll-out/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/graymail-features-roll-out</feedburner:origLink></item>
		<item>
		<title>Facebook Messages Are Dead</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/hCBqiYUIF_g/facebook-messages-are-dead</link>
		<comments>http://litmus.com/blog/facebook-messages-are-dead#comments</comments>
		<pubDate>Thu, 15 Dec 2011 21:39:42 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Observations]]></category>
		<category><![CDATA[facebook messages]]></category>
		<category><![CDATA[market share]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=592</guid>
		<description><![CDATA[At least when it comes to sending email. Last November, Facebook introduced it&#8217;s new &#8220;Social Inbox&#8221; messaging system, which included the option to have messages sent to your Facebook account through your very own @facebook.com email address. &#8230; <br /><a href="http://litmus.com/blog/facebook-messages-are-dead" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>At least when it comes to sending email.</p>
<p>Last November, Facebook introduced it&#8217;s new &#8220;<a href="http://techcrunch.com/2010/11/15/facebook-messaging/">Social Inbox</a>&#8221; messaging system, which included the option to have messages sent to your Facebook account through your very own @facebook.com email address. Shortly after that announcement, we started tracking emails opened using Facebook messages with our <a href="http://litmus.com/email-analytics">Email Analytics</a> technology.</p>
<p>So how many emails are being opened using Facebook&#8217;s messaging platform? Not very many. In fact, it&#8217;s so few that measuring it all seems a bit silly: usage peaked in November last year at 0.0000688% of total opens we tracked that month—perhaps from curious early adopters wanting to try it out. The chart below details the trend over the last year:</p>
<p><a href="http://litmus.com/blog/facebook-messages-are-dead/facebook-messages-trends" rel="attachment wp-att-647"><img class="alignnone size-full wp-image-647" title="facebook-messages-trends" src="http://litmus.com/blog/wp-content/uploads/2011/12/facebook-messages-trends.png" alt="" width="540" height="357" /></a></p>
<p>You might argue that they were never &#8220;alive&#8221; to begin with. The folks at Emailvision have seen similarly low usage rates (with less than <a href="http://blog.emailvision.com/eng/big-non-event-facebook-email-one-year">0.0015% of all emails</a> using an @facebook.com email address) and assert that the poor user experience is much to blame. I concur. In our explorations last year, I <a href="http://litmus.com/blog/facebook-messages-irrelevant">didn&#8217;t see any compelling reasons</a> to make a switch over to Facebook for my primary messaging needs. True Facebook messages (sent from one user to another without using an @facebook.com address) are a great way to send quick, casual communications to friends. However, they lack a comprehensive organizational system and have <a href="http://litmus.com/blog/facebook-messages-preview">mixed support for HTML and CSS</a>, leaving much room for improvement as a true way to send and receive email messages.</p>
<p>It also seems as though many Facebook users simply didn&#8217;t get the memo regarding the launch. In a recent article from Slate, readers and staff alike realized only recently that <a href="http://www.slate.com/blogs/browbeat/2011/12/12/facebook_s_social_inbox_fiasco_slate_readers_respond.html">Facebook has been hiding away messages</a> from non-friends into the &#8220;Other&#8221; folder.</p>
<p>Rest in peace, Facebook email messages.</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/hCBqiYUIF_g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/facebook-messages-are-dead/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/facebook-messages-are-dead</feedburner:origLink></item>
		<item>
		<title>A New Look for Email Client Selection</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/9Ig7Pvx7zvw/new-look-client-selection</link>
		<comments>http://litmus.com/blog/new-look-client-selection#comments</comments>
		<pubDate>Tue, 13 Dec 2011 20:27:27 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Features & Updates]]></category>
		<category><![CDATA[email previews]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[UI enhancements]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=642</guid>
		<description><![CDATA[If you&#8217;ve run a new test using Email Previews recently, you might have noticed a few changes. Today we launched a new email test selection screen that includes more information and a better experience when selecting which &#8230; <br /><a href="http://litmus.com/blog/new-look-client-selection" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve run a new test using <a href="http://litmus.com/email-previews">Email Previews</a> recently, you might have noticed a few changes. Today we launched a new email test selection screen that includes more information and a better experience when selecting which components you&#8217;d like to be included in your test:</p>
<p><a href="http://litmus.com/blog/new-look-client-selection/new-email-selection-screen" rel="attachment wp-att-643"><img class="alignnone size-full wp-image-643" title="new-email-selection-screen" src="http://litmus.com/blog/wp-content/uploads/2011/12/new-email-selection-screen.png" alt="" width="540" height="245" /></a></p>
<p>Here are some of the changes and improvements you&#8217;ll notice:</p>
<ul>
<li>Platform details, operating systems and device names have been added for clarity</li>
<li><a href="http://litmus.com/blog/color-blindness-filter">Color blindness filter</a> and plain text versions now appear separately from desktop clients (under the &#8220;also include&#8221; section)</li>
<li>The selections you&#8217;ve chosen will be saved as your default clients for the next time you test (or when using a <a href="http://litmus.com/help/testing/email/static-email-addresses">static email address</a> to submit tests)</li>
<li>For applicable subscriptions and price plans, the option to include a <a href="http://litmus.com/spam-filter-tests">detailed spam filter analysis</a> can be selected in the &#8220;also include&#8221; section</li>
</ul>
<p>These changes are live and available in all accounts. This is just Phase 1 of our plans to make email testing more intuitive and helpful on Litmus, and we hope you enjoy these improvements! Of course, we&#8217;re eager to hear your feedback as well.</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/9Ig7Pvx7zvw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/new-look-client-selection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/new-look-client-selection</feedburner:origLink></item>
		<item>
		<title>Top Tweets and Takeaways from #MPEIS</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/J3Rtv5g3szA/top-tweets-takeaways-mpeis</link>
		<comments>http://litmus.com/blog/top-tweets-takeaways-mpeis#comments</comments>
		<pubDate>Tue, 06 Dec 2011 22:38:55 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Conferences and Events]]></category>
		<category><![CDATA[email design]]></category>
		<category><![CDATA[mobile email]]></category>
		<category><![CDATA[on the road]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=629</guid>
		<description><![CDATA[For the last two days I&#8217;ve been eyeballs deep in great conversations regarding the latest and greatest in email marketing tools, trends and ideas at the Email Insider Summit. This morning kicked off with a great presentation &#8230; <br /><a href="http://litmus.com/blog/top-tweets-takeaways-mpeis" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>For the last two days I&#8217;ve been eyeballs deep in great conversations regarding the latest and greatest in email marketing tools, trends and ideas at the <a href="http://www.mediapost.com/emailinsidersummit/">Email Insider Summit</a>.</p>
<p>This morning kicked off with a great presentation by <a href="http://www.twitter.com/matty_caldwell">Matt Caldwell</a>, a true industry veteran with more than 10 years of experience designing specifically for email. Matt spoke about using appreciation, intrigue and amusement in email content and design to drive surprising performance in clicks, opens and revenue. Soon after I joined <a href="http://twitter.com/alexcwilliams">Alex Williams</a> and <a href="http://twitter.com/wac_intosh">Wacarra Yeomans</a> to discuss what&#8217;s happening with mobile email these days. We wanted to go a bit beyond approaches for designing mobile-friendly email and take a look at some of the darker corners of optimizing the email experience for the mobile world.</p>
<p>It&#8217;s easy to get overwhelmed by all the content being presented! Since there were many folks tweeting bits and bites of the sessions, I collected some of the best takeways and tweets into a <a href="http://storify.com/meladorri/mobile-and-creative-at-mpeis">Storify stream</a> (click to see dozens of takeaway tweets):</p>
<p><a href="http://storify.com/meladorri/mobile-and-creative-at-mpeis"><img class="alignnone size-full wp-image-635" title="storify-tweets" src="http://litmus.com/blog/wp-content/uploads/2011/12/storify-tweets.png" alt="" width="540" height="424" /></a></p>
<h4>Watch presentation recordings</h4>
<p>You can also watch recordings of both the panel discussion and Matt&#8217;s presentation over at Ustream:</p>
<p><a href="http://www.ustream.tv/recorded/18969999">Panel: Beyond the Device</a></p>
<p><a href="http://www.ustream.tv/recorded/18968553">Email Creative Makeovers</a></p>
<h4>More takeaway articles from the conference:</h4>
<p><a href="http://community.constantcontact.com/t5/Constant-Commentary/Top-5-Takeaways-from-MPEIS-for-Small-Businesses/ba-p/43327?utm_source=twitter&amp;utm_medium=twitter&amp;utm_campaign=Feed%3A+constantcontact+%28Constant+Contact+Best+Practices+Blog%29">Top 5 Takeaways from #MPEIS for Small Businesses</a> from Constant Contact</p>
<h4>Tips in your inbox!</h4>
<p>Get all the latest tips on mobile email and email creative from Litmus when you <a href="http://litmus.com/subscribe?utm_source=litmusblog&amp;utm_medium=blogcopy&amp;utm_campaign=emailsignup">subscribe to our email updates</a>!</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/J3Rtv5g3szA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/top-tweets-takeaways-mpeis/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/top-tweets-takeaways-mpeis</feedburner:origLink></item>
		<item>
		<title>Accessibility Challenges in Email Design</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/_LpDiGV7r4U/accessibility-email-design-infograph</link>
		<comments>http://litmus.com/blog/accessibility-email-design-infograph#comments</comments>
		<pubDate>Mon, 28 Nov 2011 18:46:52 +0000</pubDate>
		<dc:creator>Justine Jordan</dc:creator>
				<category><![CDATA[Infographs]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[email design]]></category>
		<category><![CDATA[infograph]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=617</guid>
		<description><![CDATA[Email has a bad habit of being a rule-breaker, making it tough to translate best practices for the web into an email-friendly format. Resources intended to improve or enhance a user&#8217;s experience on the web don&#8217;t always &#8230; <br /><a href="http://litmus.com/blog/accessibility-email-design-infograph" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Email has a bad habit of being a rule-breaker, making it tough to translate best practices for the web into an email-friendly format. Resources intended to improve or enhance a user&#8217;s experience on the web don&#8217;t always work as anticipated when tables and inline CSS are almost certainly a requirement. Since usability and accessibility principles strive to make the web usable by everyone, including those with disabilities, it&#8217;s important that those principles apply to email as well.</p>
<p>Below we&#8217;ve outlined the most common types of disabilities amongst Americans along with eight email-friendly principles to ensure your messages are usable by all. You also might consider using <a href="http://litmus.com/email-previews">Email Previews</a> to understand how your email will display to users on different platforms. Email Previews include access to our <a href="http://litmus.com/blog/color-blindness-filter">color blindness filter</a>, which allows you to simulate what a person with red-green color blindness might see when viewing your message.</p>
<p>Click on the graphic below for an enlarged view.</p>
<p><a href="http://litmus.com/blog/accessibility-email-design-infograph/accessibility-email-design-1000px" rel="attachment wp-att-618"><img class="alignnone size-large wp-image-618" title="Accessibility-Email-Design-1000px" src="http://litmus.com/blog/wp-content/uploads/2011/11/Accessibility-Email-Design-1000px-540x1971.png" alt="" width="540" height="1971" /></a></p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/_LpDiGV7r4U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/accessibility-email-design-infograph/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://litmus.com/blog/accessibility-email-design-infograph</feedburner:origLink></item>
		<item>
		<title>Webinar: Email + Mobile</title>
		<link>http://feedproxy.google.com/~r/sitevista/~3/S70mS65bmas/webinar-email-mobile</link>
		<comments>http://litmus.com/blog/webinar-email-mobile#comments</comments>
		<pubDate>Thu, 17 Nov 2011 20:29:51 +0000</pubDate>
		<dc:creator>Paul Farnell</dc:creator>
				<category><![CDATA[Conferences and Events]]></category>
		<category><![CDATA[mobile email]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://litmus.com/blog/?p=613</guid>
		<description><![CDATA[Earlier this week hundreds of people joined Justine Jordan and Chris Studabaker for our Email + Mobile webinar. You know you have subscribers reading your emails on their mobile devices, now here&#8217;s what to do about it. &#8230; <br /><a href="http://litmus.com/blog/webinar-email-mobile" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Earlier this week hundreds of people joined Justine Jordan and <a href="http://twitter.com/cstudabaker">Chris Studabaker</a> for our Email + Mobile webinar. You know you have subscribers reading your emails on their mobile devices, now here&#8217;s what to do about it. Chris and Justine go into a ton of detail on suggested design approaches for mobile email. You won&#8217;t want to miss this one.</p>
<p>Below you can watch the full hour-long webinar recording. You can also <a href="http://www.slideshare.net/LitmusApp/email-mobile-webinar">view the slides on SlideShare</a>.</p>
<p><object width="540" height="405" id="wistia_618033" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="movie" value="http://embed.wistia.com/flash/embed_player_v1.2.swf"/><param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="wmode" value="opaque"/><param name="flashvars" value="videoUrl=http://embed.wistia.com/deliveries/fcd6feeedbf20506e078ef8c55e4a55ed125c099.bin&#038;stillUrl=http://embed.wistia.com/deliveries/58498129c62d3a3700425386c5299e6ddb62d8b2.bin&#038;unbufferedSeek=true&#038;controlsVisibleOnLoad=false&#038;autoPlay=false&#038;endVideoBehavior=default&#038;playButtonVisible=true&#038;embedServiceURL=http://distillery.wistia.com/x&#038;accountKey=wistia-production_1283&#038;mediaID=wistia-production_618033&#038;mediaDuration=4020"/><embed src="http://embed.wistia.com/flash/embed_player_v1.2.swf" width="540" height="405" name="wistia_618033" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" flashvars="videoUrl=http://embed.wistia.com/deliveries/fcd6feeedbf20506e078ef8c55e4a55ed125c099.bin&#038;stillUrl=http://embed.wistia.com/deliveries/58498129c62d3a3700425386c5299e6ddb62d8b2.bin&#038;unbufferedSeek=true&#038;controlsVisibleOnLoad=false&#038;autoPlay=false&#038;endVideoBehavior=default&#038;playButtonVisible=true&#038;embedServiceURL=http://distillery.wistia.com/x&#038;accountKey=wistia-production_1283&#038;mediaID=wistia-production_618033&#038;mediaDuration=4020"></embed></object><script src="http://embed.wistia.com/embeds/v.js" charset="ISO-8859-1"></script><script>if(!navigator.mimeTypes['application/x-shockwave-flash'] || navigator.userAgent.match(/Android/i)!==null)Wistia.VideoEmbed('wistia_618033',540,405,{videoUrl:'http://embed.wistia.com/deliveries/12cf0f0090e0a2e13d934125ae80f7cfe4c471fb.bin',stillUrl:'http://embed.wistia.com/deliveries/58498129c62d3a3700425386c5299e6ddb62d8b2.bin',distilleryUrl:'http://distillery.wistia.com/x',accountKey:'wistia-production_1283',mediaId:'wistia-production_618033',mediaDuration:4020})</script></p>
<p>If you&#8217;d prefer, you can <a href="http://cdn.litmus.com/email-plus-mobile.mov">download the webinar</a> in Quicktime format.</p>
<img src="http://feeds.feedburner.com/~r/sitevista/~4/S70mS65bmas" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://litmus.com/blog/webinar-email-mobile/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
<enclosure url="http://embed.wistia.com/deliveries/12cf0f0090e0a2e13d934125ae80f7cfe4c471fb.bin" length="0" type="video/mp4" />
<enclosure url="http://cdn.litmus.com/email-plus-mobile.mov" length="373812670" type="video/quicktime" />
		<feedburner:origLink>http://litmus.com/blog/webinar-email-mobile</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 2.264 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-10 16:53:55 --><!-- Compression = gzip -->

