我正在尝试将我的 mandrilapp 配置更改为 amazon ses 以便从我的 rails 应用程序发送电子邮件,但是当我尝试测试时,rails 没有给出任何错误,但电子邮件永远不会数组。
我的 ses 管理控制台有两个经过验证的地址,但我不明白为什么我无法发送电子邮件。
我有以下配置:
config.action_mailer.delivery_method = :aws_sdk
config.action_mailer.smtp_settings = {
:address => "email-smtp.eu-west-1.amazonaws.com",
:port => 465,
:enable_starttls_auto => true,
:user_name => "blablablausername",
:password => "blablablablablablapassword",
:authentication => 'login',
:ssl => true,
:domain => 'mydomain.es',
}
知道吗?
谢谢
更新
我将代码上传到heroku,但是当我注册创建新用户时,出现以下错误:
Aws::Errors::Missing CredentialsError (无法在没有 凭据集)
但如您所见,我有我的用户和传递凭据。
我做错了什么?
谢谢
我已经通过以下设置成功发布了使用 SES 的应用程序。
# Gemfile
gem 'aws-ses', '~> 0.6.0', require: 'aws/ses'
# config/initializers/amazon_ses.rb
ActionMailer::Base.add_delivery_method :ses, AWS::SES::Base,
access_key_id: Rails.application.secrets.amazon_access_key,
secret_access_key: Rails.application.secrets.amazon_secret_key,
server: 'email.us-west-2.amazonaws.com'
# config/environments/development(or production).rb
config.action_mailer.delivery_method = :ses
您还必须设置默认 URL 选项 - config.action_mailer.default_url_options
。
更多信息可在 GitHub 自述文件中找到。