我似乎無法設計發送生產中的確認郵件。在日誌中沒有錯誤,並且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。
感謝您的幫助, 凱文
加上'config.action_mailer.perform_deliveries = TRUE;如果你想通過'smtp'嘗試那麼端口應該是'587'代替'25' –