I'm designing an HTML template for an email newsletter. I've learned that many email clients ignore linked stylesheets, and many others (including Gmail) ignore CSS block declarations altogether. Are inline style attributes my only choice? What are the best practices for styling HTML emails?
|
|
|
Campaign Monitor have an excellent support matrix detailing what's supported and what isn't among various mail clients. You can use a service like Litmus to view how an email appears across several clients and whether they get caught by filters, etc. |
|||||
|
|
I've fought the HTML email battle before. Here are some of my tips about styling for maximum compatibility between email clients.
And lastly, test, test, test! Each email client does things way differently than a browser would do. |
|||||||||||||||
|
|
Mail chimp have got quite a nice article on what not to do. ( I know it sounds the wrong way round for what you want) http://kb.mailchimp.com/article/common-html-email-coding-mistakes In general all the things that you have learnt that are bad practise for web design seem to be the only option for html email. The basics are:
Just test in as many email clients as you can get your hands on, or use Litmus as someone else suggested above! (credit to Jim) |
|||||||
|
|
The resource I always end up going back to about HTML emails is CampaignMonitor's CSS guide. As their business is geared solely around email delivery, they know their stuff as well as anyone is going to |
||||
|
|
|
In addition to the answers posted here, make sure you read this article: |
||||
|
|
|
'Fraid so. I'd make an HTML page with a stylesheet, then use jQuery to apply the stylesheet to the style attr of each element. Something like this:
Then copy the DOM and use that in the email. |
|||||||
|