메일을 메일러에 표시하는 방법
배경
보낸 일련의 메일을 Gmail과 같은 메일러에 표시하고 싶습니다.
해법
스레드 할 메일 헤더의 References
와 In-Reply-To
는 모두 동일합니다.
상세
깊게 쫓지 않기 때문에 References
또는 In-Reply-To
의 한쪽에서 좋은 가능성도 높습니다 (아마도 References
그냥 )
Rails의 경우라면 이런 느낌으로 쓸 수 있습니다. 동일한 item_id
메일이 [email protected]
사용자의 메일러에서 병합됩니다.
app/mailers/sample_mailer.rbclass SampleMailer < ActionMailer::Base
def example(item_id)
mail(
:from => '[email protected]',
:to => '[email protected]',
:subject => 'sample subject',
:references => "<#{item_id}@example.com>",
:in_reply_to => "<#{item_id}@example.com>"
)
end
end
참고 링크
스레드 할 메일 헤더의
References
와 In-Reply-To
는 모두 동일합니다.상세
깊게 쫓지 않기 때문에 References
또는 In-Reply-To
의 한쪽에서 좋은 가능성도 높습니다 (아마도 References
그냥 )
Rails의 경우라면 이런 느낌으로 쓸 수 있습니다. 동일한 item_id
메일이 [email protected]
사용자의 메일러에서 병합됩니다.
app/mailers/sample_mailer.rbclass SampleMailer < ActionMailer::Base
def example(item_id)
mail(
:from => '[email protected]',
:to => '[email protected]',
:subject => 'sample subject',
:references => "<#{item_id}@example.com>",
:in_reply_to => "<#{item_id}@example.com>"
)
end
end
참고 링크
class SampleMailer < ActionMailer::Base
def example(item_id)
mail(
:from => '[email protected]',
:to => '[email protected]',
:subject => 'sample subject',
:references => "<#{item_id}@example.com>",
:in_reply_to => "<#{item_id}@example.com>"
)
end
end
Reference
이 문제에 관하여(메일을 메일러에 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yuku_t/items/a257dac96eac1ab912aa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)