Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a tool or a bundle in Symfony2 that allows me to create normal templates with css files, and then on the fly convert it to inline css rules so it can be used as the body of an email?

share|improve this question

2 Answers

up vote 1 down vote accepted

I know of three tools that can do this and which you can use in Symfony:

  • Premailer is an online tool which provides this service. It has an API and a php wrapper for that API
  • CssToInlineClass is a php class that offers this functionality
  • Mailchimp offers a function in their api that offers this functionality

The first two don“t have a direct symfony implementation, though they will be easy to use. For mailchimp, there is a mailchimp bundle which offers this functionality, though the bundle is not very well documented.

share|improve this answer
Thanks, CssToInlineClass looks like the way to go for me – David Sep 6 '12 at 15:10
Maybe you can create a public bundle for that class and share it with everyone :-) – Carlos Granados Sep 6 '12 at 15:13
haha it will be very nice but first I have to learn how to create a bundle for sharing in github. But I will keep it in mind. – David Sep 6 '12 at 15:19

Today I discovered through another question that exists such a Symfony2 bundle that fits your needs (I didn't tested it).

You can use ToInlineStyleEmailBundle, it embeds the CSSToInline library that Carlos Granados suggested in his answer.

With this Symfony2 bundle you can get the converter as a service ($this->get('css_to_inline_email_converter')) and then use it for your needs. It also supports templates generations.

share|improve this answer
Thanks for the update :) – David Jan 17 at 18:26
Don't mention it! – JeanValjean Jan 18 at 8:48

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.