如何定义与:from
不同的回复地址?这可能吗?
两种方式:
class Notifications < ActionMailer::Base
default :from => 'your_app@your_domain.com',
:reply_to => 'some_other_address@your_domain.com'
end
或:
class Contacts < ActionMailer::Base
def new_contact
mail( :to => 'somebody@some_domain.com',
:from => 'your_app@your_domain.com',
:reply_to => 'someone_else@some_other_domain.com')
end
end
或者您可以混合使用这两种方法。我相信还有更多的方法可以做到这一点。
Rails 5.2和可能的旧/新版本的解决方案:
修改文件:
config/environments/development.rb
与内容:Rails.application.configure do
config.action_mailer.default_options = {
reply_to: 'test@example.com'
}
end
参考:https://guides.rubyonrails.org/action_mailer_basics.html action-mailer-configuration