What would be the best way to go about making ActionMailer send mail via Amazon SES in Rails 3?
Edit:
This is now an official gem.
gem install amazon-ses-mailer
|
What would be the best way to go about making ActionMailer send mail via Amazon SES in Rails 3? Edit: This is now an official gem.
|
|||||
|
|
I also have a gem out that supports sending e-mail through SES from Rails 3: https://github.com/drewblas/aws-ses It also has all the API for verifying/managing e-mail addresses |
|||
|
Setting up Rails 3.2 for sending emails using Amazon's Simple Email Service (SES) is easy. You do not require any additional gem or monkey patching to make it work. SES supports both STARTTLS over SMTP as well as TLS/SSL. The following demonstrates how to set up Rails for STARTTLS with SES. Prerequisites
If you do not do this, there is a possibility that Ruby will segfault when you try to send an email.
Configuring Rails In config/development.rb and config/production.rb, add the following:
Sending an email This is it. Now you can go ahead and create a mailer and start sending emails for fun and profit! Create a sample mailer
In app/mailer/user_mailer.rb:
In views/user_mailer/test.erb:
Now, launch the console and shoot off a test email:
|
|||||||||||||
|
|
After poking around a bit I ended up just making a simple class to do this. https://github.com/abronte/Amazon-SES-Mailer In rails, you can get the encoded email message:
|
|||||||
|
|
SES just was released into beta today, so I doubt that there is a ready-to-go gem (at least, not that I've seen). You could write a custom module based upon their developer documents:
|
|||
|
|
You can provide delivery method to action mailer in your environment.
For now you are likely on your own writing the delivery code. |
|||
|
|