I am using Ruby on Rails 3.1.0 and I would like to know if it is possible to use CSS classes in mailer templates (.html.erb). At this time, in order to style emails, I am using HTML code like the following:

<div style="margin: 4px 0 12px;">
  <span style="font-size: 14px;">
    ...
  </span>
</div>

So, is it possible to use CSS classes in mailer templates? If so, where and how I should state and use those classes?

link|improve this question

There is no such thing as a CSS class. Things that have been incorrectly referred to as "CSS classes" include HTML classes, CSS class selectors, CSS selectors, CSS rule-sets, CSS rules and CSS properties. – Quentin Jan 8 at 9:24
@Quentin - Thanks for the tip. – user12882 Jan 8 at 9:25
feedback

4 Answers

Code like it's 1995, because email clients (particularly Outlook 2007, Gmail, Hotmail) support a very limited set of HTML elements and CSS attributes. Use tables, inline styles, presentation elements (i.e. <b> instead of font-weight:bold).

Useful links on coding for email:

link|improve this answer
feedback

Stylesheets have a tendency to be stripped by some mail clients (especially with web mail services) so the use of style attributes is recommended instead.

link|improve this answer
feedback

Yes. ERB allows you to write any HTML you would normally.

However, because it's email and clients are notoriously bad at rendering CSS consistently, you should use inline formatting as you have in your example. (I know that's horrible).

You could insert a <style>.myclass { color: red; }</style> at the top of the mailer template and then use <div class="mclass"> in the template, but chances are that this style tag will be removed by the client.

link|improve this answer
feedback

You're lucky because there's a gem called Roadie that solves this problem elegantly. See the RailsCasts episode Sending HTML Email for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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