Making HTML emails comfortable for the Rails rockstars
Roadie tries to make sending HTML emails a little less painful in Rails 3 by inlining stylesheets and rewrite relative URLs for you.
If you want to have this in Rails 2, please see MailStyle.
Email clients have bad support for stylesheets, and some of them blocks stylesheets from downloading. The easiest way to handle this is to work with all styles inline, but that is error prone and hard to work with as you cannot use classes and/or reuse styling.
This gem helps making this easier by automatically inlining stylesheet rules into the document before sending it. You just give it a list of stylesheets and it will go though all of the selectors assigning the styles to the maching elements. Careful attention has been put into rules being applied in the correct order, so it should behave just like in the browser¹.
Roadie also rewrites all relative URLs in the email to a absolute counterpart, making images you insert and those referenced in your stylesheets work. No more headaches about how to write the stylesheets while still having them work with emails from your acceptance environments.
¹: Of course, rules like :hover
will not work by definition. Only static styles can be added.
- Writes CSS styles inline
- Respects
!important
styles - Does not overwrite styles already present in the
style
attribute of tags - Supports the same CSS selectors as Nokogiri (use CSS3 selectors in your emails!)
- Respects
- Makes image urls absolute
- Hostname and port configurable on a per-environment basis
- Makes link
href
s absolute - Automatically adds proper html skeleton when missing (you don't have to create a layout for emails)²
²: This might be removed in a future version, though. You really ought to create a good layout and not let Roadie guess how you want to have it structured
Sass is supported "by accident" as long as the stylesheets are generated and stored in the stylesheets directory. This is the default behavior from Sass. You are recommended to add a deploy task that generates the stylesheets to make sure that they are present at all times.
Roadie is officially supported in both Ruby 1.8.7 and 1.9.2.
Add the gem to Rails' Gemfile
gem 'roadie'
Simply specify the :css
option to mailer:
class Notifier < ActionMailer::Base
default :css => :email, :from => 'support@mycompany.com'
def registration_mail
mail(:subject => 'Welcome Aboard', :to => 'someone@example.com')
end
def newsletter
mail(:subject => 'Newsletter', :to => 'someone@example.com', :css => [:email, :newsletter])
end
end
This will look for a css file called email.css
in your public/stylesheets
folder. The css
method can take either a string, a symbol or an array of both. You should pass the CSS filename without the ".css" extension.
If you have default_url_options[:host]
set in your mailer, then Roadie will do it's best to make the URLs of images and in stylesheets absolute.
In application.rb
:
class Application
config.action_mailer.default_url_options = {:host => 'example.com'}
end
If you want to to be different depending on your environment, just set it in your environment's configuration instead.
By default, style
and link
elements in the email document's head
are processed along with the stylesheets and removed from the head
.
You can set a special data-immutable="true"
attribute on style
and link
tags you do not want to be processed and removed from the document's head
. This is the place to put things like :hover
selectors that you want to have for email clients allowing them.
Style and link elements with media="print"
are always ignored.
Any link
element that is part of your email will be linked in. You can exclude them by setting data-immutable
as you would on normal style
elements. Linked stylesheets for print media is also ignored as you would expect.
If the link
tag uses an absolute URL to the stylesheet, it will not be inlined. Use a relative path instead:
<head>
<link rel="stylesheet" type="text/css" href="/stylesheets/emails/rock.css"> <!-- Will be inlined -->
<link rel="stylesheet" type="text/css" href="http://www.metal.org/metal.css"> <!-- Will NOT be inlined -->
<link rel="stylesheet" type="text/css" href="/stylesheets/jazz.css" media="print"> <!-- Will NOT be inlined -->
<link rel="stylesheet" type="text/css" href="/ambient.css" data-immutable> <!-- Will NOT be inlined -->
</head>
- Improve overall performance
- Clean up stylesheet assignment code
- Online documentation for 1.0.1
- Online documentation for 1.0.0
- Online documentation for master
- Changelog
This gem was originally developed for Rails 2 use on Purify under the name MailStyle. However, the author stopped maintaining it and a fork took place to make it Rails 3 compatible.
The following people have contributed to the orignal gem:
- Jim Neath (Original author)
- Lars Klevans
- Jonas Grimfelt
- Ben Johnson
- Istvan Hoka
- Voraz
(The MIT License)
Copyright (c) 2009-2011
- Jim Neath
- Magnus Bergmark magnus.bergmark@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.