aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-12-02 16:51:13 +0100
committerYves Senn <yves.senn@gmail.com>2013-12-02 16:56:31 +0100
commit23aa94a7b2d51536baa5eb91a8cd50cdd6dfa99e (patch)
treeca9fc16632d39bc638ddb1517ac264b8bfa90e5b /actionmailer/CHANGELOG.md
parentd362ee17dbd1a500fc2e0331025845d8d38977e7 (diff)
downloadrails-23aa94a7b2d51536baa5eb91a8cd50cdd6dfa99e.tar.gz
rails-23aa94a7b2d51536baa5eb91a8cd50cdd6dfa99e.tar.bz2
rails-23aa94a7b2d51536baa5eb91a8cd50cdd6dfa99e.zip
`mail()` without arguments is a getter for the current mail.
This behavior is documented in our guides (http://edgeguides.rubyonrails.org/action_mailer_basics.html#action-mailer-callbacks) but was broken in the past. This commit short curcuits the `mail` method if: 1. mail() was previously called 2. no headers are passed 3. no block is passed Closes #13090. /cc @pixeltrix
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index dc8c6bdf74..857cde399a 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,22 @@
+* Calling `mail()` without arguments serves as getter for the current mail
+ message and keeps previously set headers.
+
+ Example:
+
+ class MailerWithCallback < ActionMailer::Base
+ after_action :a_callback
+
+ def welcome
+ mail subject: "subject", to: ["joe@example.com"]
+ end
+
+ def a_callback
+ mail # => returns the current mail message
+ end
+ end
+
+ *Yves Senn*
+
* Instrument the generation of Action Mailer messages. The time it takes to
generate a message is written to the log.