ฉันจะกำหนดที่อยู่ตอบกลับให้แตกต่างจากที่อยู่ได้:from
อย่างไร เป็นไปได้หรือไม่?
ฉันจะกำหนดที่อยู่ตอบกลับให้แตกต่างจากที่อยู่ได้: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
หรือจะผสมทั้งสองวิธีก็ได้ ฉันแน่ใจว่ามีหลายวิธีในการทำเช่นนี้
โซลูชันสำหรับ 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