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

When you take a look at http://www.campaignmonitor.com/css/ you learn that you need to embed inline styles in your HTML, in order for your email to be read in any mail client.

Do you know any tools or script to automatically convert an HTML file with a declared in to an HTML file with only inline CCS style attributes ?

Edit: Any Javascript solution ( ie: http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/ ) ? With jQuery ?

share|improve this question

11 Answers

up vote 30 down vote accepted

Check this online converter or this Python script to do it.

share|improve this answer
Thanks for this link ! It seems to be exactly what I was looking for. – Pierre-Jean Coudert Apr 26 '09 at 20:04
6  
Looks like Premailer moved to a new URL: premailer.dialect.ca – Matt Huggins Apr 26 '10 at 15:59
Mail chimp offers a great style inliner here: beaker.mailchimp.com/inline-css – DrGlass Aug 19 '12 at 22:59
premailer.dialect.ca is great, but it chokes on a lot of pages. It's more than half in my testing. For example, try this page. – NickWoodhams Dec 27 '12 at 0:17

If you'd like to have a PHP solution, you can try CssToInlineStyles.

share|improve this answer
that php script is well written. it doesn't handle the !important flag, but it's a nice script none the less. – Perry Tew Aug 20 '12 at 15:33

You might want to take a look at PostageApp.

One of its really strong features is that it has a very robust templating system that can automatically inline HTML and CSS without any issues.

(Full Disclosure: I am the Product Manager for PostageApp.)

share|improve this answer
so you are doing CSS inlining at the end of the processing chain (right before sending the e-mail to someone)? – zazi Mar 23 '12 at 10:21
@zazi: Just about at the end, yeah. – JonLim Apr 7 '12 at 16:03
+1 for disclosure... – Eran Medan May 10 '12 at 3:03

It's not enough to simply inline your CSS. There are no observed standards as to how an HTML email will be shown in whatever email client is used. They all do it differently, and the more you design your email the more likely it is that it will break in a greater amount of clients. Many professionals in this space simply use images and tables and maybe some background colors, but nothing else. Always include a link to a website that has a working copy of the email and always provide a plain text variant.

share|improve this answer

A Java solution was posted by user Grekz on a similar Question: Automatically convert Style Sheets to inline style

share|improve this answer

Two C# variants:

http://chrispebble.com/Blog/7/inlining-a-css-stylesheet-with-c

PreMailer.Net - https://github.com/milkshakesoftware/PreMailer.Net

Haven't tested either as of yet but will post back if/when I do.

share|improve this answer

This may be a little too late, but if you want to make your HTML the best possible for e-mail marketing (by inlining your css, and using a bunch of other cool tools), use the Premailer. Its free, and of course, made in partnership with CampaignMonitor itself.

Hope it helps.

share|improve this answer
+1 for Premailer. It's got both a web form and an API which you can use to integrate it into any platform. If you're using node.js, there a wrapper here. – Jed Watson Oct 22 '12 at 14:16
+1000 for Premailer, amazing tool! – cristiangrojas Apr 22 at 2:36

I wrote a Node.js library called Styliner that inlines CSS in server-side Javascript.

It supports LESS stylesheets as well (and supports plugins for other formats)

share|improve this answer

Another one from mailchimp - http://beaker.mailchimp.com/inline-css

share|improve this answer

For PHP programmers: check this online converter or this PHP script to do it.

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.