aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-08-17 16:57:57 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-08-17 16:57:57 -0700
commit6e6ebeb03cf0ff58c9ef778bfbdd9b0b9891b17b (patch)
treeb2bc6481de358977fc8382ccbcff8b2cd3f9cd67 /actionmailer/CHANGELOG.md
parent5d2de5c3b8d71ae7ffd1b4193edc1b169e00cd0e (diff)
downloadrails-6e6ebeb03cf0ff58c9ef778bfbdd9b0b9891b17b.tar.gz
rails-6e6ebeb03cf0ff58c9ef778bfbdd9b0b9891b17b.tar.bz2
rails-6e6ebeb03cf0ff58c9ef778bfbdd9b0b9891b17b.zip
Add CHANGELOG entry for #deliver_later
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 451270bae3..e6952a4b3b 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Added #deliver_later in addition to #deliver, which will enqueue a job to render and
+ deliver the mail instead of delivering it right at that moment. The job is enqueued
+ using the new Active Job framework in Rails, and will use whatever queue is configured for Rails.
+
+ *DHH/Abdelkader Boudih/Cristian Bica*
+
+
* Make ActionMailer::Previews methods class methods. Previously they were
instance methods and ActionMailer tries to render a message when they
are called.