aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorNate Berkopec <nate.berkopec@gmail.com>2012-10-27 14:28:42 -0400
committerNate Berkopec <nate.berkopec@gmail.com>2012-11-19 11:27:22 -0500
commit9cf33b55f39779b98604e1652affc2c64873dd9b (patch)
treeb9ae97ade41b07a17e8f52d8e1194e96ac3d13be /actionmailer/CHANGELOG.md
parent3b99653587cead2f8b6ba4ee163c8b736d5f7f34 (diff)
downloadrails-9cf33b55f39779b98604e1652affc2c64873dd9b.tar.gz
rails-9cf33b55f39779b98604e1652affc2c64873dd9b.tar.bz2
rails-9cf33b55f39779b98604e1652affc2c64873dd9b.zip
Explicit multipart messages respect :parts_order
As issue #7978, the order in which ActionMailer sends multipart messages could be unintentionally overwritten if a block is passed to the mail method. This changes the mail method such that :parts_order is always respected, regardless of whether a block is passed to mail.
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 28a5c0ab71..af91907f46 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,5 +1,8 @@
## Rails 4.0.0 (unreleased) ##
+* Explicit multipart messages no longer set the order of the MIME parts.
+ *Nate Berkopec*
+
* Do not render views when mail() isn't called.
Fix #7761