我的ruby on rails动作邮件程序在开发环境中运行良好,但在生产环境中,它一直抛出:
ActionView::Template::Error: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true
我的开发配置是
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:port => xxx,
:address => 'smtp.example.org',
:user_name => 'xxx@example.com',
:password => 'xxxxxxxx',
:domain => 'xxxxxx.com',
:authentication => :plain,
}
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
我的生产配置是
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:port => 587,
:address => 'smtp.example.org',
:user_name => 'xxx@example.com',
:password => 'xxxxxx',
:domain => 'example.com',
:authentication => :plain,
}
config.action_mailer.default_url_options = { :host => 'example.com' }
我的其他环境是:
ruby 2.1.1
rails 4.0.3
sidekiq
devise
devise-async
我试过了:
在初始化文件
中添加以下内容ActionMailer::Base.default_url_options[:host] = "example.com"
此回答here
它们都不起作用。
答案 0 :(得分:77)
最后,我为每个环境文件添加了以下正确的值:
test.rb / development.rb / production.rb
设计3.2.x - 4.x.x
Rails 4.1.x && Rails 4.2.x && Rails 5.x.x
感谢maudulus
# Default Mailer Host
Rails.application.routes.default_url_options[:host] = 'domain.com'
答案 1 :(得分:4)
尝试重新启动服务器。即使在Rails 4.1中,如果没有重新启动,也不会重新配置配置。