Using Amazon SES with Rails ActionMailer

前端 未结 10 1405
南旧
南旧 2020-12-04 09:42

What would be the best way to go about making ActionMailer send mail via Amazon SES in Rails 3?

Edit:

This is now a gem:

gem install amazon-         


        
10条回答
  •  无人及你
    2020-12-04 09:57

    You can provide delivery method to action mailer in your environment.

    config.action_mailer.delivery_method = AmazonSES.deliver
    

    For now you are likely on your own writing the delivery code.

提交回复
热议问题