解决方法
是的,您可以指定:ssl选项.
在config / environments / production.rb文件中设置以下值:
config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { address: 'mail.example.com',port: 465,domain: 'example.com',user_name: 'no-reply@example.com',password: 'password',authentication: 'plain',ssl: true,}
这适用于我的ISP(Bluehost)发送邮件.