1

ヘッダーを使用して追加しようとしました

headers "References" => "<message_id>"

しかし、生成された電子メールには見つかりません。さらに、In-Reply-To ヘッダーを追加しようとしましたが、どちらも表示されません。Rails 2.3.8 を使用しています。

4

1 に答える 1

0

これを試して。

class UserMailer < ActionMailer::Base

  def notification(user)
    recipients    user.email
    from          "notifications@example.com"
    headers       {"References" => "<message_id>"}
    # code ...
  end
end

ヘッダーを指定する構文については、Rails のガイドのこちらのドキュメントを確認してください。

于 2013-03-26T09:27:54.257 に答える