在config/environment/development.rb,
我有
config.ip: 'http://localhost:3000'
在config/environment/production.rb,
我有
config.ip = 'http://52.74.70.227'
我想使用类似config.url = 'http://example.com'
的内容
因此,当有人从我那里收到激活电子邮件链接时,该链接会显示http://example.com/abc
内容http://52.74.70.227/abc
答案 0 :(得分:0)
config/environment/development.rb
<{1>}中的
config.action_mailer.default_url_options = {host: "localhost:3000"}
了解更多信息,请点击此处http://api.rubyonrails.org/classes/ActionMailer/Base.html