: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
または、2つのアプローチを組み合わせることができます。これを行う方法は他にもあるはずです。
Rails 5.2およびおそらくより古い/新しいバージョンのソリューション:
ファイルを修正します。
config/environments/development.rb
コンテンツあり:
Rails.application.configure do
config.action_mailer.default_options = {
reply_to: '[email protected]'
}
end
参照:
https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration