회신 주소를 정의하는 방법은 무엇입니까?


답변:


147

두 가지 방법:

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

또는 두 가지 접근 방식을 혼합 할 수 있습니다. 이를 수행하는 더 많은 방법이 있다고 확신합니다.


4
어리석은 소년, 나는 메일 방법 정의를 제외하고 어디에서나 보았다 : apidock.com/rails/ActionMailer/Base/mail 감사합니다!
emzero

공식 문서에서도이를 보여줍니다 : api.rubyonrails.org/classes/ActionMailer/…
user664833

1
이에 따르면 : igvita.com/2007/07/21/sendmail-spam-filter-tricks-in-rails 일치해야 합니다. 그렇지 않으면 스팸 소프트웨어에 의해 메일에 플래그가 지정됩니다.
Dan Barron 2014 년

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.