我已将Amazon SES设置为从Rails APP发送电子邮件。
在关闭SES帐户之前,它运行良好。
重新激活SES帐户后,我重新创建了SES KEY。
但是它返回错误“ 535身份验证凭据无效”。
当我在SES CLI上进行测试时,它会正确发送电子邮件。
config.action_mailer.smtp_settings = {
:address => 'email--------------.com',
:port => '587',
:authentication => :login,
:user_name => 'AK-------------------A',
:password => 'BE------------------D5',
:enable_starttls_auto => true
}
这是我的动作邮件程序配置。