我似乎无法设计在生产中发送确认邮件。日志中没有错误,并且 sendmail 工作正常。这是我的生产配置:
config.action_mailer.delivery_method = :sendmail
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true, #this is the important stuff!
:address => "localhost",
:port => 25,
:domain => 'beautifulidiot.com',
:openssl_verify_mode => 'none',
:perform_deliveries => true
}
我尝试将交付方式更改为:smtp,也没有运气。这是 Rails 3.2.5。
感谢您的帮助,凯文