我正在尝试使用html模板发送邀请电子邮件。目前我正在使用aws-ses这样的宝石:
ses = AWS::SES::Base.new(
:access_key_id => 'XXXXXXXXXXXXXXX',
:secret_access_key => 'XXXXXXXXXXXXXXX')
ses.send_email(:to => ..., :source => ..., :subject => ..., :html_body => <p> Hi how are you</p>)
我将html代码作为字符串发送到:html_body
。这很好。
我想要做的是使用模板,并将其存储在单独的文件中,例如invite_email.html.erb
,该文件将存储在app/views/user_mailer/
下。
所以我想我必须使用动作邮件来使用渲染视图。我设置动作邮件程序以使用AWS :: SES gem,并按照rails指南设置动作邮件程序rails g mailer UserMailer
。我有一个UserMailer,一个布局,我重新启动了服务器。我的developement.rb
看起来像这样:
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :ses
我在:ses
:
initializers/action_mailer.rb
ActionMailer::Base.add_delivery_method :ses, AWS::SES::Base,
access_key_id: 'XXXXX',
secret_access_key: 'XXXXX'
服务器响应:UserMailer#invite_email: processed outbound mail in 184.0ms
问题是,我仍然没有收到任何电子邮件。我在测试环境中尝试使用environments/test.rb
中不同计算机上的相同设置,但仍然没有电子邮件。服务器显示正在呈现布局并正在处理电子邮件。我错过了一个设置吗?
答案 0 :(得分:5)
我正在使用以下方法让ActionMailer
使用AWS SES发送电子邮件。我在fog-aws gem周围创建了一个简单的包装器,并添加了类似于您在问题中使用的传递方法。我决定使用fog-aws
gem,因为它允许我使用IAM角色,而不是明确指定访问凭据。
我创建了lib/aws/ses_mailer.rb
文件,其中包含以下内容:
module AWS
class SESMailer
attr_reader :settings
def initialize(options = {})
@fog_mailer = Fog::AWS::SES.new(options)
@settings = {}
end
delegate :send_raw_email, to: :@fog_mailer
alias_method :deliver!, :send_raw_email
alias_method :deliver, :send_raw_email
end
end
然后在config/initializers/amazon_ses.rb
中添加投放方式:
ActionMailer::Base.add_delivery_method :ses, AWS::SESMailer, use_iam_profile: true
然后在特定环境中启用它:
config.action_mailer.delivery_method = :ses
现在您可以使用AWS SES发送电子邮件。