我有一个包含多个域的 Rails 应用程序。在里面config/initializers/devise.rb
我已经设置了mail_sender
如上所示:
config.mailer_sender = Proc.new { request.host.include?('somedomain') ? "noreply@somedomain.com" : "noreply@theotherdomain.com" }
但我无权访问变量request
,也无权访问 ApplicationController 中的任何其他助手。你有什么想法吗?
提前致谢