我正在尝试使用Rails 4.1.0设置action_mailer来发送电子邮件。
在我的config / environments / {env} .rb中,我有:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.mandrillapp.com',
port: 587,
domain: 'domain.com',
authentication: 'login',
user_name: 'email@domain.com',
password: 'pass',
enable_starttls_auto: true }
它在开发中运行良好,但在prod中它正在尝试连接到localhost。
m = Mail.new
m.delivery_method
=> #<Mail::SMTP:0xbd79fdac @settings={:address=>"localhost", :port=>25, :domain=>"localhost.localdomain", :user_name=>nil, :password=>nil, :authentication=>nil, :enable_starttls_auto=>true, :openssl_verify_mode=>nil, :ssl=>nil, :tls=>nil}>
但是当我“放入Rails.application.config.action_mailer”时,我得到了正确的配置
{:raise_delivery_errors=>false, :default_url_options=>{:host=>"domain.com"}, :delivery_method=>:smtp, :smtp_settings=>{:address=>"smtp.mandrillapp.com", :port=>587, :domain=>"domain.com", :authentication=>"login", :user_name=>"email@domain.com", :password=>"password", :enable_starttls_auto=>true}, :assets_dir=>"xxx", :javascripts_dir=>"xxx", :stylesheets_dir=>"xxx", :asset_host=>nil, :relative_url_root=>nil}
有什么想法吗?
答案 0 :(得分:2)
默认情况下,Mail gem不会使用您的ActionMailer配置。 ActionMailer使用Mail,但只有在通过ActionMailer发送邮件时才会应用这些配置设置。
如果它在您的开发模式下工作,那么您当然已经在development.rb环境文件中或在环境特定的初始化程序中单独配置了Mail gem。
答案 1 :(得分:2)
我忘了我在development.rb中有这个配置
Mail.defaults do
delivery_method Rails.configuration.action_mailer.delivery_method, Rails.configuration.action_mailer.smtp_settings
end
答案 2 :(得分:0)
您需要在host
文件上添加default_url_options
哈希的production.rb
选项,如下所示:
config.action_mailer.default_url_options = { :host => ENV['HOST_DEFAULT_URL'],
only_path: false }
这应该可以解决问题。