Antworten:
Zwei Wege:
class Notifications < ActionMailer::Base
default :from => 'your_app@your_domain.com',
:reply_to => 'some_other_address@your_domain.com'
end
Oder:
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
Oder Sie können die beiden Ansätze mischen. Ich bin sicher, es gibt noch mehr Möglichkeiten, dies zu tun.
Lösung für Rails 5.2 und möglicherweise ältere / neuere Versionen:
Ändern Sie die Datei:
config/environments/development.rb
Mit Inhalt:
Rails.application.configure do
config.action_mailer.default_options = {
reply_to: 'test@example.com'
}
end
Die Referenz:
https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration