<?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>Marketing Forward &#187; hotmail</title>
	<atom:link href="http://www.experian.com/blogs/marketing-forward/tag/hotmail/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.experian.com/blogs/marketing-forward</link>
	<description>Marketing insight and consumer trends from Experian Marketing Services</description>
	<lastBuildDate>Thu, 03 Jan 2013 23:14:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Cures For the Common Code: Troubleshooting Your Email Marketing Code Issues</title>
		<link>http://www.experian.com/blogs/marketing-forward/2011/01/05/cures-for-the-common-code-troubleshooting-your-email-marketing-code-issues/</link>
		<comments>http://www.experian.com/blogs/marketing-forward/2011/01/05/cures-for-the-common-code-troubleshooting-your-email-marketing-code-issues/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 21:49:18 +0000</pubDate>
		<dc:creator>Stephen Sharp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.emailresponsibly.com/?p=3298</guid>
		<description><![CDATA[Even though coding for email marketing is, in many ways, easier than that of a website, mistakes are very common. Fortunately, these mistakes are easy to troubleshoot, and most are even easier to fix. This handy reference helps HTML coders quickly establish the cause of an error and outlines guidelines for proper email coding.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.emailresponsibly.com/wp-content/uploads/2010/11/coding_graphic.gif"><img class="size-full wp-image-3306 alignright" src="http://www.emailresponsibly.com/wp-content/uploads/2010/11/coding_graphic.gif" alt="" width="250" height="250" /></a>Even though coding for email marketing is, in many ways, easier than that of a website, mistakes are very common. Fortunately, these mistakes are easy to troubleshoot, and most are even easier to fix.</p>

<p>This handy reference helps HTML coders quickly establish the cause of an error and outlines guidelines for proper email coding.</p>

<p><strong>Why are HTML Errors in Emails Common?</strong></p>

<p>Most issues are simply due to messy code. Very often, code gets re-used on a regular basis to deploy campaigns where the content and images are continually being updated and moved around. This can lead to unintentional duplication or omission of HTML tags, and QA oversights.</p>

<p>There’s also the matter of which email client (Gmail, Hotmail, Outlook 2007, etc.) you’re viewing the code. Knowledge of what works across each of the major email clients will help in determining where rendering errors are occurring and why.<strong> </strong></p>

<p><strong>Checking Code with an HTML Validator</strong></p>

<p>First and foremost, use an HTML validator, like the one built into the CheetahMail application, to check your code. It reviews
the code and generates a report, detailing where errors like missing HTML tags, malformed table structures and alignment issues exist in the code.</p>

<p>In addition, make use of QA options like Mailbox Snapshot tools which provides screenshots of what the code will look like across multiple email clients.</p>

<p><strong>Across the Board:</strong></p>

<p>Some coding issues tend to be universal. Here are a few of them:</p>

<ul><li><span style="text-decoration: underline;">Layout is off by one pixel or pushes out past the border of the design</span><br>
This is usually due to one of the &lt;td&gt; width measurements exceeding the total width of the table. The widths are determined by a simple math equation involving the table cells; usually the math just needs to be corrected. If you add up the individual table cells and they don’t equal the &lt;table&gt;’s width, you’ve found the problem. The problem could also be from the use of CSS to format the design. Certain email clients like Outlook 2007 and Hotmail won’t understand formatting CSS (margin:1px;) and will disregard it. The use of CSS in email is not a best practice.</li>

<li><span style="text-decoration: underline;">Parts of a layout don’t display</span><br>
This can be due to a malformed table structure, incorrect HTML syntax, or colspans that are missing or have incorrect numerical values.</li>

<li><span style="text-decoration: underline;">The background image behind the HTML text repeats</span></br>
The best practice is to design your creative so it doesn’t rely on background images. If a background image must be used, leave some extra space for the HTML text to “grow” when rendered in different email clients. Since various email clients tend to add extra line-spacing to HTML text, this will allow for the table cell holding the HTML text to expand while maintaining the integrity of the design.</li>

<li><span style="text-decoration: underline;">HTML text isn’t aligning properly and is leaving blank areas in the creative</span><br>
Make sure to use aligning properties inside the &lt;td&gt; like valign and align. Without those attributes defined, the HTML text will float in the vertical middle within the &lt;td&gt; tag. If that doesn’t work, review how the overall table is set up, and if the &lt;td&gt; measurements are correct.</li>

<li><span style="text-decoration: underline;">HTML emails in Outlook have a mysterious “break” every 800 pixels from the top of the email down</span><br>
This is caused by the rendering engine that Outlook 2007 and 2010 are built on. Since Microsoft Word inserts an automatic page break every 11 inches, or the length of a letter size document, Outlook 2007 does the same. There’s currently no way to code around this issue without changing the design to use flat colors and white space to counteract the automatic breaking.</li></ul>

<p><strong>Email Clients and Their Personalities</strong></p>

<p>Once HTML code has been developed and validated, testing can begin across the major email clients on both the MAC and PC operating platforms. To know the specific coding pitfalls of the email clients is to have reached true HTML email coding enlightenment!</p>

<p>Here are some examples to watch out for:</p>
<ul><li><span style="text-decoration: underline;">Gmail/Yahoo!</span><br>
Known to be very finicky, Gmail will pick up on the slightest coding mistake and render the email incorrectly. Extra line-spacing is added to HTML text which can break a design. This can be controlled with the correct usage of inline styles to control how the HTML text renders. Background images should be defined within the &lt;td&gt; tag, and NOT within the &lt;body&gt; tag.</li>

<li><span style="text-decoration: underline;">AOL</span><br>
Form functionality like search fields and drop down boxes won’t work. Consider dynamically inserting forms based on domain, or linking to a hosted page offering forms.</li>

<li><span style="text-decoration: underline;">Gmail in Firefox</span><br>
Adds extra “padding” to images which causes extra white space to appear around an image’s border. You can alleviate this by adding an inline style called “style=”display:block;” to the img tag. This work-around removes the imposed padding and fixes the issue.</li>

<li><span style="text-decoration: underline;">Hotmail in Firefox</span><br>
The same issue mentioned above regarding Gmail in Firefox also happens in Hotmail in Firefox.</li><br>

<li><p><span style="text-decoration: underline;">Microsoft Outlook 07</span><br>
Most issues involving Outlook 07 have to do with it being based on the HTML rendering engine of Microsoft Word. Microsoft Word is predominantly for text formatting, so it cannot interpret sophisticated code. Basically, if Microsoft Word can’t render code correctly, chances are Outlook 07 will also have trouble with it.</p>

<ul><li><em>Outlook 07 has no support for background images</em><br>
This is a common problem for clients who use system text with a graphic behind it. Because Outlook 07 won’t display the background, it will just appear as a blank white space. As a quick fix, pick a color out of the design’s background and insert it as a hex color. Another option instead of using system text, is to code that section of the design as an image.</li>

<li><em>Animations do not work in Outlook 07</em><br>
It will only display the first frame. Because of this, it is necessary that the first frame of an animation be a significant one; if the viewer is only capable of seeing the first frame, it needs to capture the basic idea of the message.</li></ul>

<p>Adhering to these simple guidelines will ensure your code will be presented properly across the major email clients. Now get coding!</p>]]></content:encoded>
			<wfw:commentRss>http://www.experian.com/blogs/marketing-forward/2011/01/05/cures-for-the-common-code-troubleshooting-your-email-marketing-code-issues/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How The Latest Hotmail Features Will Impact Deliverability</title>
		<link>http://www.experian.com/blogs/marketing-forward/2010/08/05/how-the-latest-hotmail-features-impact-deliverability/</link>
		<comments>http://www.experian.com/blogs/marketing-forward/2010/08/05/how-the-latest-hotmail-features-impact-deliverability/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 19:06:58 +0000</pubDate>
		<dc:creator>Robert Meisel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cheetahmail]]></category>
		<category><![CDATA[deliverability]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[hotmail]]></category>

		<guid isPermaLink="false">http://www.experian.com/blogs/marketing-forward/?p=4826</guid>
		<description><![CDATA[Microsoft has recently announced enhancements to its Windows Live Hotmail, including features that “help busy people with full lives.” The CheetahMail deliverability team has reviewed these new features and offers these thoughts on their potential impact on senders. Some of the new features that should have a positive impact on email deliverability include: Trusted Senders [...]]]></description>
			<content:encoded><![CDATA[<p><em>Microsoft has recently announced enhancements to its Windows Live Hotmail, including features that “help busy people with full lives.” The CheetahMail deliverability team has reviewed these new features and offers these thoughts on their potential impact on senders.</em></p>
<p><img class="alignnone  wp-image-4827" title="How The Latest Hotmail Features Will Impact Deliverability" src="http://www.experian.com/blogs/marketing-forward/wp-content/uploads/2012/08/how-the-latest-hotmail-features-impact-deliverability.jpg" alt="How The Latest Hotmail Features Will Impact Deliverability" width="659" height="497" /></p>
<p><strong>Some of the new features that should have a <em>positive</em> impact on email deliverability include:</strong></p>
<ul>
<li><span style="text-decoration: underline;">Trusted Senders Icon</span> — Hotmail will now help visually identify ‘trusted senders’ in your inbox, particularly banks and other senders most commonly impersonated in phishing scams, by putting safety logos next to those senders recognized as legitimate. While the exact details on this feature are limited right now, it will most likely be based on a combination of authentication and a consistently positive mailing reputation.</li>
<li><span style="text-decoration: underline;">Tabs</span> — Organizational tools will appear at the top of the inbox that will allow the user to display messages received from specific contacts, certain social networks (such as Facebook notifications), pre-selected email groups, or all of their mail. In addition, “Quick Views” will be available that will automatically sort four types of emails into their respective folders: Flagged, Photos, Office Docs, and Shipping Updates. These tabs can benefit senders by addressing inbox overload issues.</li>
</ul>
<p><strong>One of the new features that should have a <em>negative</em> impact on senders and deliverability as a whole:</strong></p>
<ul>
<li><span style="text-decoration: underline;">Time Traveling Filters</span> — Microsoft’s filters can retroactively remove messages that were placed in the inbox if the reputation of the sender later turns out to be poor and the recipient has not yet opened the message in their inbox. That means there’s no longer a guarantee that a message delivered to the inbox will actually stay there until the recipient acts on it.</li>
</ul>
<p>In addition to these two deliverability enhancements, <strong>there are also some new user interface features and ‘behind the scenes’ developments that can have either positive or negative effects</strong> on senders. These include:</p>
<ul>
<li><span style="text-decoration: underline;">Preference auto-learning/prompts</span> — Subscribers that delete messages without opening them multiple times will be prompted if they want to unsubscribe from that sender (assuming the sender is populating a ‘list-unsubscribe’ setting in their transmission header). This will have positive and negative affects for senders; it will undoubtedly reduce list size by some amount, however, it removes recipients who are no longer engaged which should improve open and conversion rates.</li>
<li><span style="text-decoration: underline;">Sweep</span> — This feature allows users to clean out their inbox in one ‘sweep’ effort. In a single-click, a user can select a single e-mail sender, or multiple senders, and automatically delete or move every message from that sender out of their inbox. A positive byproduct of this feature is that senders whose mail is swept should not suffer any impact to their reputation since the number of unsubscribes and spam complaints should decrease as more recipients use sweep rather than unsubscribing, deleting or complaining. However, it’s important to remember that just because a complaint rate is low doesn’t mean that the sender’s reputation and deliverability is good. Hotmail will still check email quality, engagement and other relevant statistics to further identify legitimate messaging. Additionally, the sweep function remembers user preferences, so if a user sweeps a sender’s mail once, Hotmail is likely to continue to sweep that sender’s mail to the designated folder until the user intervenes.</li>
<li><span style="text-decoration: underline;">Delete all of them?</span> — Upon deleting a single email from a sender, users may be prompted to “Delete all of them?” with the ability to block all future messages from that particular sender. This action should have the same positive/negative effects as the Preference auto-learning/prompts.</li>
</ul>
<p>These enhancements to Hotmail can have both positive and negative effects on senders. These changes are primarily designed so that fewer true spam messages will appear in your subscriber’s inbox, which will allow the subscriber greater time to interact with legitimate messages from legitimate senders.</p>
<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"></div>
		<div style="clear:both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.experian.com/blogs/marketing-forward/2010/08/05/how-the-latest-hotmail-features-impact-deliverability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>