Recoil

Rails delivery method. Send via Amazon SES, but with local blacklist.
Warning: This is an early version of the gem. If you're sending an email to multiple receivers this gem might break in unexpected ways.
Installation
Add this line to your application's Gemfile and run bundle install:
gem 'recoil'
Copy migrations and run
rake recoil:install:migrations
rake db:migrate
Add an initializer: config/initializers/recoil.rb with the following content:
ActionMailer::Base.register_interceptor(Recoil::Interceptor)
Add endpoint to routes:
mount Recoil::Engine => '/ses'
Subscribe to SES notifications... and profit!
Contributing
- Fork it ( https://github.com/brightin/recoil/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request