I was over at MailChimp's css inliner http://www.mailchimp.com/labs/inlinecss.php and I was wondering if there are any classes out there that can do this, I'd love to have it in my email code instead of going all the way over to MailChimp.
Basically I'm looking for the code, behind the page or something very similar.
Cheers.
You can try Premailer. The source is available on Github. (Just noticed your tag is PHP and Premailer is Ruby, so this might not count as a real answer for you...)
How's this?
https://www.myintervals.com/emogrifier.php
"... Emogrifier automagically transmogrifies your HTML by parsing your CSS and inserting your CSS definitions into tags within your HTML based on your CSS selectors. You can either use the form below to paste your HTML or CSS, or if you're more technically inclined, you can download the PHP source code and use it in your own applications. "
I was looking for the same thing tonight and I found this library https://github.com/christiaan/InlineStyle ,which does what I think you want.
It even understand selectors like ul > li and such.
Emogrifier did not work for me, so I have developed this: https://github.com/djfm/cssin. I've tried several other libs and none worked on my HTML files, my lib is pretty OK I think.
The link in the OP appears to be gone, but MailChimp offers a style-to-inline convertor for free with no signup here:
http://beaker.mailchimp.com/inline-css
Still have to go "all thet way over to Mailchimp", though!
I was looking for the same thing (PHP based, downloadable, open source), but couldn't find it, so I created the following proxy/wrapper for the open source ruby library: https://github.com/onassar/PHP-Premailer
Hope it's helpful.