我该如何定义与收件人不同的答复地址:from
?那有可能吗?
Answers:
两种方式:
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