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?