3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

メールをメーラー上でスレッド表示する方法

Last updated at Posted at 2014-02-03

背景

送った一連のメールをGmailなどのメーラーの上でスレッド表示したい

解法

スレッド化したいメールのヘッダーの ReferencesIn-Reply-To を全て同じものにする.

詳細

深追いしていないので References もしくは In-Reply-To の片方でいい可能性も高いです(おそらく References だけで :ok_woman:

Railsの場合だとこんな感じに書けます。同じ item_id のメールが to@example.com ユーザのメーラ上でひとまとまりにされます。

app/mailers/sample_mailer.rb
class SampleMailer < ActionMailer::Base
  def example(item_id)
    mail(
      :from => 'from@example.com',
      :to => 'to@example.com',
      :subject => 'sample subject',
      :references => "<#{item_id}@example.com>",
      :in_reply_to => "<#{item_id}@example.com>"
    )
  end
end

参考リンク

3
2
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?