如何定义回复地址?

时间:2011-05-05 17:18:07

标签: ruby-on-rails-3 actionmailer

如何定义不同于:from的回复地址?这甚至可能吗?

2 个答案:

答案 0 :(得分:134)

两种方式:

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

或者你可以混合使用这两种方法。我相信还有更多方法可以做到这一点。

答案 1 :(得分:0)

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