1. ホーム
  2. ruby-on-rails-3

[解決済み] 返信先アドレスの定義方法を教えてください。

2023-05-01 03:21:22

質問

返信先アドレスを :from とは違うアドレスを定義できますか?そんなことは可能なのでしょうか?

どのように解決するのですか?

2つの方法があります。

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つのアプローチを混ぜることもできます。さらにいろいろなやり方があると思います。