diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-04-28 13:43:19 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-04-28 13:43:39 +0200 |
commit | f58c1e17faeb8251a2ac945c7f6a13d37bc2da17 (patch) | |
tree | 390f119423ea46af3eb7b1aec0d119c8964abcb0 | |
parent | 80d068779d5dce6c21570680e2b9602c5d9145a2 (diff) | |
parent | 3d92a9e0879e1656dcc03a6ec441a7cf4ab3d9f2 (diff) | |
download | rails-f58c1e17faeb8251a2ac945c7f6a13d37bc2da17.tar.gz rails-f58c1e17faeb8251a2ac945c7f6a13d37bc2da17.tar.bz2 rails-f58c1e17faeb8251a2ac945c7f6a13d37bc2da17.zip |
Merge pull request #19931 from prathamesh-sonpatki/note-about-non-get-links
Added note about non-GET links getting converted to GET links in mailer Added note about non-GET links getting converted to GET links in mailer templates [ci skip]
-rw-r--r-- | guides/source/action_mailer_basics.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index 73b240ff2c..089ce53f07 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -530,6 +530,9 @@ url helper. <%= user_url(@user, host: 'example.com') %> ``` +NOTE: non-`GET` links require [jQuery UJS](https://github.com/rails/jquery-ujs) +and won't work in mailer templates. They will result in normal `GET` requests. + ### Sending Multipart Emails Action Mailer will automatically send multipart emails if you have different |