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

I'm sending emails with an HTML version for capable clients (isn't that virtually all nowadays?). My worry is how to style it. Do I use inline css? Can I include the stylesheet in the html? Does the html begin with <html> or <body>? Is there a standard I can read on this?

How far can I go in styling? I have border-radius, background gradients, etc that have natural fallback mechanisms for browsers that don't support it (IE). For IE, I use PIE.htc, I assume that's going too far...

share|improve this question

5 Answers

up vote 1 down vote accepted

As far as the email client is concerned the HTML in an email begins with <body>. All styling must be done inline, unfortunately email clients don't behave the same way browsers do. There is some good information available here:

share|improve this answer
Yeah, I recall tables being a good friend, when it comes to HTML emails. – Danjah Dec 8 '10 at 20:33

Regarding what kind of styling you can and can't use, have a look at this excellent article which details what each of the 10 most popular email clients support:

http://www.campaignmonitor.com/css/

As far as using stylesheets, you can do that if you like, but you'll have to link to a stylesheet hosted elsewhere, as far as I know. This might present a problem if someone wants to read their email offline.

Lastly, I try to always wrap my HTML emails in the <html> tag, as it seems to make the email appear more "valid" to many email filters.

share|improve this answer
1  
I don't understand your last sentence. "wrap my HTML emails in the tag." – at. Dec 8 '10 at 20:46
1  
Oops, forgot a word! That should say "wrap my HTML emails in the <html> tag." – Ender Dec 8 '10 at 20:50

To quote something I read in a magazine recently 'code like it's 1996'.

Trying to code elegantly and efficiently doesn't seem to return consistent results when you test your newsletter with multiple mail clients. When you test make sure you get your testers to do a foward of the message as sometimes fabulous coding will break in the forward.

While I hate using tables for display, they will render more consistently across mail clients than floating or multi column DIVS will (particularly if the newsletter, etc is forwarded on from the original recipient to someone else).

see also: http://www.netmag.co.uk/zine/discover-culture/create-the-perfect-newsletter

Heeeeeelllooooo 1996!!

share|improve this answer

I'm sending emails with an HTML version for capable clients (isn't that virtually all nowadays?).

From hard experience, "capable" doesn't equal "enabled". I don't think there's anything wrong at all with having great-looking HTML email, but make sure that you have a text-based contingency if your audience demands it.

I've worked with several companies who were technically progressive until it came to rich email, which somehow has managed to stay in prehistoric times (I like the "code like it's 1996" comment in this thread). You are potentially contending with ancient Lotus installations, Outlook Web Access 2003 running in "down level" mode, or proxy servers that will munge HTML content prior to receipt.

More difficult to deal with is the fact that modern email clients like Gmail and Outlook 2007/2010 are "smart" and don't download images unless explicitly allowed.

To answer your original question, don't rely on anything even close to cutting edge (such as CSS 3) or complex (deeply nested layouts, negative margins, etc). If you decide to roll the dice on images, you can put more in your image and less in your HTML, allowing you to get more creative with your designs.

The best emails I receive are the ones which have clear and simple text that is so interesting I allow Outlook to download the pictures, and I forgive any minor formatting errors. Content, as always, is king.

share|improve this answer
+1, great advice – Kevin C. Aug 31 '11 at 18:58

Do I use inline css?

Yes,

  • in A and FONT elements for color, font-size // face/font-family are equal for email parser
  • in IMG elements for display:block; //gmail uses display:inline; so you need to override it
  • in first TABLE for background-image; background-repeat; //to display bg-images in Outlook 2007/10.

Can I include the stylesheet in the html?

Yes, HEAD and BODY tag are both needed, because most web mailer parse only the content of the BODY

Does the html begin with <html> or <body>?

Html starts with the DOCTYPE Declaration.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

It's my favorite, because you can make use of the FONT element. (useful to style stable link colors within the A element)

http://www.w3schools.com/html/html_doctype.asp

http://www.w3schools.com/tags/tag_doctype.asp

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.