मैं एक उत्तर को एक से भिन्न करने के लिए कैसे परिभाषित कर सकता हूं :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
या आप दो दृष्टिकोणों को मिला सकते हैं। मुझे यकीन है कि ऐसा करने के और भी तरीके हैं।
रेल 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