Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does the HTML/CSS for an html email newsletter need to be in table format, or can I use DIVs with equal assurance it will display well cross email-client? I've downloaded a number of templates to see how they're done, upon which to base my own, and they all seem to use tables.

Any insight much appreciated, thanks!

share|improve this question
This is incredibly comprehensive: http://mailchimp.com/resources/guides/email-marketing-field-guide – j-man86 Sep 6 '10 at 18:26
Very useful. Embedding CSS inside the body tag. Who would've thought! – aaandre Feb 24 '12 at 18:52

4 Answers

up vote 40 down vote accepted

When it comes to email HTML, note that all best practices from web development goes out the window. To make the look consistent, you should:

  1. Use table based layouts
  2. Use the old-school attribute styling for tables
  3. Use ONLY inline-styles, and only very simple such. <style>-tags are discarded by many clients.
  4. Skip using <html>, <head> and <body> - They will be discarded by most clients anyway.
  5. If you embed images, try to make sure that the e-mail looks decent even if images are not loaded. Many clients require the user to mark the email as "safe" before displaying images.

You can read more detailed versions of the above points here:

share|improve this answer
This is so true. Outlook 2007 is one of the worst of them all (and most are pretty bad...). – Max May 29 '10 at 15:06
1  
And no background images (thanks a lot outlook 2010). – kristina childs Jun 20 '12 at 22:42

Many email-clients aren't able to render css. I would use tables to format your mail and use images for anything else.

share|improve this answer
You can't use images in emails by default; mail clients will block them until the user marks the sender as safe. Nearly all common clients do support limited inline CSS. – Rex M May 29 '10 at 14:46
Older clients doesn't, and many business-users still use them. And no, not every client doesn't shows images. It's just a step for additional security, but clients as the iPhone have no reason for blocking images. – fb55 May 29 '10 at 14:50

Like everyone here has said, use tables and inline all your css... but there is an ecosystem of email apps to help you build emails.

I've been using Mailrox (https://www.mailrox.com/) for most of my email builds recently and it seem to be pretty damm good and outputting perfect HTML emails, if you're building one from a design, even though it's in beta.

You could also try pre-built templates from Mailchimp or Campaign Monitor, but it sounds like you have a design for your email so maybe Mailrox would be best.

If you really want to get into building emails I'd say forget most of what you know about modern webdesign and master table layouts and use the links from PatrikAkerstrand.

Litmus is also great for testing your hand-coded designs. They give you previews of your email in (pretty much) all the email clients.

Hope this helps.

share|improve this answer

I would say tables since using Email It when we made a template. It only sent well where we used Tables and Not DIVs. It also offered a check which let us see how the email would look like in 6 different popular email clients. So that can be helpful sometimes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.