HTML Email Rendering Issues list with fixes
HTML Email coding tips and Best practices
-
It is best to start with
HTML5
Doctype. Since now a days responsive is mandatory for all clients we need to code our HTML creatives with responisve ready. To make responsive we will be using media queries and some of theCSS3
styles. So, it is best to useCSS3
withHTML5
Doctype. -
Write the codes clean and neat to look good and readable to all developers like giving proper indents, adding meaningful classes and ids, adding reasonable title and alt texts to the images etc., which makes you a good coder.
-
Don't forget to add responsive meta tags to ensure the responsive work properly
mandatory
<meta name="viewport" content="width=device-width">
this is optional
<meta name="format-detection" content="telephone=no">
-
Start with 100% table and add content table with align center property to make sure the content aligned center to the page
-
Try to keep all rows in a table has single column. If multiple columns needed insert a table for that particular row and add the coloumns needed.
-
Make sure all rows in a table has same number of columns, if not make them same using colspan
-
Try not to use
padding
&margin
as much as possible. It is better not to usemargin
inline styles for desktop versions. For mobile versions you are free to use all majorCSS3
styles, since all mobiles supports almost allHTML5
andCSS3
specifications. -
For empty row spaces use this code instead of using spacer images
tr td valign="top" style="font-size:1px; line-height:1px;" height="10" class="height_01" !--[if gt mso 14] ![endif]-- /td /tr
Here height will be varied depends on how much height needed and the following Outlook specific conditional codes needs to be added to the
head
section by targeting theclass="height_01"
!--[if gt mso 14] style type="text/css" .height_01, #height_01 { font-size:1px; line-height:1px; } /style ![endif]--
In this one
id="height_01"
is added for future purppose to make use of id, in case if the class styles not working. -
To align any content to centered to the parent block, use this code. Either it may be text contents or image.
tr td valign="top" align="center" table border="0" cellspacing="0" cellpadding="0" align="center" class="align_center" tr td valign="top" align="center" Centered contents goes here. /td /tr /table /td /tr
Here the class
class="align_center"
is to make any block to center aligned for mobile versions. Either it may be right aligned or left aligned content in desktop versions. The following styles needs to be added to the media query for mobile responsive..align_center{ float:none; margin:0 auto !important; }
-
Always use nested tables. Try not to use stacked table coding style.
Usefull code snippets for HTML emails
Standard HTML email template
Standard HTML email template with all neccessary classses and styles added
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">
<title>Cartier</title>
<style type="text/css">
body { margin: 0px; padding: 0px; background-color: #FFFFFF; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none !important; -ms-text-size-adjust: none !important; }
* { line-height: normal !important; }
a[href^="x-apple-data-detectors:"] { color: inherit; text-decoration: inherit; }
a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important; }
a { text-decoration: none; }
div { display:inherit !important; }
@media screen and (max-device-width: 480px) {
*[class~=full] { width: 100% !important; min-width: 100% !important; }
*[class~=contents] { width: 84.375% !important; }
*[class~=hide] { display: none !important; }
*[class~=show] { display: block !important; font-size: inherit !important; max-height: none !important; width: auto !important; line-height: normal !important; overflow: visible !important; }
*[class~=imgfull] { width: 100% !important; height: auto !important; }
*[class~=text_center] { text-align: center !important; }
*[class~=align_center] { float: none !important; margin: 0 auto !important; }
*[class~=align_right] { float: right !important; }
*[class~=align_left] { float: left !important; }
*[class~=coldrop] { display: block !important; width: 100% !important; padding: 0px !important; }
.arrange_top { display: table-header-group !important; }
.arrange_bottom { display: table-footer-group !important; }
*[class=autoheight] { height: auto !important; }
*[class=autowidth] { width: auto !important; }
*[class=autowidthheight] { width: auto !important; height: auto !important; }
body[yahoo] *[class~=no_bg] { background: none !important; background-color: #ffffff !important; }
body[yahoo] *[class~=top_banner] { width: 100% !important; background-size: cover !important; background-position: 100% top !important; }
*[class~=padding_lr10] { padding: 0px 10px 0px 10px !important; }
*[class~=padding_t10] { padding: 10px 0px 0px 0px !important; }
*[class~=nopad] { padding: 0px 0px 0px 0px !important; }
*[class~=margin_b10] { margin-bottom: 10px !important; }
*[class~=margin_t10] { margin-top: 10px !important; }
*[class~=height20] { height: 20px !important; }
*[class~=height15] { height: 15px !important; }
*[class~=height10] { height: 10px !important; }
*[class~=height5] { height: 5px !important; }
}
@media screen and (max-device-width: 414px) {
}
@media screen and (max-device-width: 375px) {
}
@media screen and (max-device-width: 320px), screen and (max-device-width: 360px) {
*[class~=hide2] { display: none !important; }
}
</style>
<!--[if gte mso 9]>
<xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
<![endif]-->
<!--[if gt mso 14]>
<style type="text/css">
.height_01 {
font-size:1px;
line-height:1px;
}
/*Windows 10 phone link fix*/
span.MsoHyperlink {
mso-style-priority:100 !important;
color:inherit !important;
text-decoration:none !important;
}
</style>
<![endif]-->
</head>
<body yahoo="fix">
<!-- wrapper table -->
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="table-layout:fixed;">
<tbody>
<tr>
<td style="vertical-align:top;" align="center" bgcolor="#FFFFFF">
<!-- contents table -->
<table class="full" align="center" border="0" cellpadding="0" cellspacing="0" width="640" style="min-width:640px;">
<tbody>
<tr>
<td style="vertical-align:top;" align="center">Here goes the actual Email contents</td>
</tr>
</tbody>
</table>
<!-- contents table ends -->
</td>
</tr>
</tbody>
</table>
<!-- wrapper table ends -->
</body>
</html>
Useful Regular Expressions
Useful Regular Expressions
-
Regular expressions to find all %LINK_ID in HTML creative
%link_id=([^\s]*\d{8,})
-
To grap any specific html tag with closing tag from HTML
<< /span>%TAG%\b[^>]*>(.*?)| << /span>\/%TAG%>
Here replace
%TAG%
with the tag which needs to be match. -
To find all href values in HTML
href="([^"]*")
-
Regular expressions to find all empty attributes in HTML creative except alt=""
\b(?:(?!alt)\w)+\b="\s{0,}"
-
Regular expressions to find all empty tags except
<< /span>td> << /span>/td>
in HTML creative<([A-Z][A-Z0-9]*)\b[^td>]*>\s*<\ /\1>
-
Regular expressions to find all MS Outolook conditional codes in HTML creative
<< /span>!--\[if[^>]*>(.|\n)*? << /span>!\[endif\]-->
-
Regular expressions to find all title / class / id / alt texts in HTML creative
title="([^"]*")
,class="([^"]*")
,id="([^"]*")
,alt="([^"]*")
or All at once except alt=""
class="?([^"])*"| << /span>tbody\b[^>]*>(.*?)| << /span>\/tbody>|title="([^"]*")|id="?([^"])*"| << /span>!--.*?-->|\b(?:(?!alt)\w)+\b="\s{0,}"
-
Regular expressions to find and wrap all attributes with "" in HTML creative
(\s\w+=)(\d{1,})
replace it with regex pattern $1"$2" to wrap all value attributes like width, height, border, cellspacing, cellpadding, colspan, rowspan with double quotes.
Gmail Webmail Targeting
Gmail Webmail Targeting
!DOCTYPE html
html lang="en"
head
style
u + .body .gmail{
display:block !important;
}
/style
/head
body class="body"
div class="gmail" style="display:none;" THIS IS GMAIL /div
/body
/html
Check the Original resource from Litmus here
Call to Action with background-image and hover effect
Call to Action with background-image and hover effect
!doctype html
html
head
meta charset="utf-8"
/head
body
tr
td
table
tr
td align="center"
table width="200" class="CTA0hoverzone" border="0" cellspacing="0" cellpadding="0"
tr
!--Background--
td bgcolor="#960096" class="CTA0hovermodif" style="background-image: url(http://www.maxiweb.fr/demo/pourlitmus/bg.png);" background="http://www.maxiweb.fr/demo/pourlitmus/bg.png" width="320" height="40" valign="middle" align="center"
!--[if gte mso 9] v:rect style="width: 320px; height: 40px;" strokecolor="none" v:fill type="tile" color="#960096" src="http://www.maxiweb.fr/demo/pourlitmus/bg.png" /v:fill /v:rect v:shape id="theText" style="position: absolute; width: 320px; height: 40px;" ![endif]--
table width="320" border="0" cellspacing="0" cellpadding="0"
tr
!--partie texte du bouton--
td height="40" width="270" valign="middle" style="text-align:center; mso-line-height-rule:exactly;"
a href="#" style="display: table-cell; height: 40px; width: 270px; vertical-align: middle; font-family: Arial, sans-serif; font-size: 14px; line-height: 18px; font-weight: 400; color: #ffffff; text-shadow:2px 2px 2px #000; text-decoration: none;"
CTA 0
/a
/td
!--partie image du bouton--
td width="50" height="40"
a href="#" style="text-decoration: none;"
img src="http://www.maxiweb.fr/demo/pourlitmus/fleche.png" width="50" height="30" alt="»" border="0" style="display: block; font-family: Arial, sans-serif; font-size: 14px; font-weight: 400; color: #ffffff; position: relative; top: 0px; left: 10px; text-decoration: none;"/
/a
/td
/tr
/table
!--[if gte mso 9] /v:shape ![endif]--
/td
/tr
!--FIN du Background--
!--ligne en dessous du bouton--
tr
td height="3" class="CTA0traithover" style="font-size:0px; line-height:0px;" bgcolor="#640064" /td
/tr
/table
/td
/tr
/table
/td
/tr
/body
/html
Check the Original resource from Litmus here
Outlook 2002-2013 Targeting
Outlook 2002-2013 Targeting
!--[if gte mso 10]
{content}
![endif]--
!--[if gt mso 9]
{content}
![endif]--
Check the Original resource from Litmus here
Outlook 2000-2010 Targeting
Outlook 2000-2010 Targeting
!--[if lte mso 14]
{content}
![endif]--
!--[if lt mso 15]
{content}
![endif]--
Check the Original resource from Litmus here
Outlook 2010-2013 Targeting
Outlook 2010-2013 Targeting
!--[if gte mso 14]
{content}
![endif]--
!--[if gt mso 12]
{content}
![endif]--
Check the Original resource from Litmus here
Hide and show
Hide and show
<!--[if !mso]><!-->
<tr>
<td valign="top"><div class="show" style="display: none; font-size: 0; max-height: 0; width:0px; line-height: 0; padding: 0;mso-hide: all; overflow:hidden;">
<!-- mobile codes goes here -->
</div></td>
</tr>
<!--<![endif]-->
Make sure to add the following styles for the class show for mobile versions
*[class~=show] { display: block !important; font-size: inherit !important; max-height: none !important; width: auto !important; line-height: normal !important; overflow: visible !important; }
Usefull reference links for HTML emails
- Diff Checker
- Bulletproof background images to HTML Emails from Campaign Monitor
- Bulletproof email buttons for HTML Emails from Campaign Monitor
- For regular expressions
- HTML codes for special characters & symbols
- All in one Unicode convertors
- Online Multilingual keyboard
- All in one place for All kind Email troubleshootings
- Code Therapy: Troubleshooting HTML Email from Litmus
- MS Outlook Overview from Litmus
- Tools for coding HTML emails from Campaignmonitor
- Open-Source Spam Filter