3
3

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.

multipart/alternative なのにGmailではテキストメールが表示されてしまう場合

Posted at

ActionMailer使ってmultipart/alternativeなメールを送る場合、よくこんな書き方をしてHTMLとTEXTなファイルを用意すると思います

mail to: user.email do |format|
    format.html { render }
    format.text { render }
end

でもこれGmailなどで受信するとテキストメールとして表示されてしまい、HTMLソース丸見えな情けないメールになってしまうことがあります

[RFC1341 section 7.2.3] (https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html)

ちゃんとRFC読めというのが結論だったのですが、優先的に表示したければ(最適なものは)最後に指定しろとあります。上記ソースコードでいうと順番を変更する必要がありました。

mail to: user.email do |format|
    format.text { render }
    format.html { render }
end
3
3
0

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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?