InCurve

InCurve provides a single, beautiful, handy helper method for your Rails app, letting you easily inline any CSS code present on your mail views. InCurve is just a small wrapper around the "premailer" gem.

Example

If you have this mail view:

<% incurve_css do %>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
      body { 
        background-color: #e6e6e6;
        background-position: top center;
        background-repeat: no-repeat repeat-y;
        margin: 0;
        padding: 0;
      }
    </style>
  </head>
  <body>
  </body>
</html>
<% end %>

The mail you'll send will be like this:

Sweet.

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

Copyright (c) 2010 weLaika. See LICENSE for details.