2

我有 rails 应用程序,并且我在 heroku 中托管。创建用户时,设计会向邮件发送确认,单击链接将确认用户帐户。问题是邮件中的链接指向 localhost 而不是 herokuapp.com,所以我怎样才能将链接从 localhost 更改为 herokuapp.com。请帮我

邮件中的链接指向

http://localhost:3000/signup/confirmation?confirmation_token=sdgfshtdf364wygd

但我希望链接指向

http://example.herokuapp.com/signup/confirmation?confirmation_token=sdgfshtdf364wygd 
4

2 回答 2

6

在 config/environments 中转到 production.rb,放在底部

 config.action_mailer.default_url_options = { :host => 'http://nameofyourherokuapp.herokuapp.com' }

确保您在其中也有您的 smtp 设置,就像您在开发环境中一样

于 2012-11-30T13:29:52.933 回答
2

application.rb集中

config.action_mailer.default_url_options = { :host => 'urlyouwant.com' }

或者在环境目录中根据环境制作它

于 2012-11-30T13:30:29.090 回答