[ruby-on-rails-3] 회신 주소를 정의하는 방법은 무엇입니까?

답장 주소와 다른 주소를 어떻게 정의 할 수 :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


답변