aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-10-05 16:21:01 -0400
committerGitHub <noreply@github.com>2018-10-05 16:21:01 -0400
commit251b9d4bd62bfc076969bd0751fa4cc6e95a4f33 (patch)
treea6c2cbeb25d860b11769516283a96597eb0d90cf /actionmailer/CHANGELOG.md
parent164e0e2c277255055ee1bd5c555a32c45d10dc98 (diff)
parentc90c6c1344e62d5705f92efc323016a83a1e7351 (diff)
downloadrails-251b9d4bd62bfc076969bd0751fa4cc6e95a4f33.tar.gz
rails-251b9d4bd62bfc076969bd0751fa4cc6e95a4f33.tar.bz2
rails-251b9d4bd62bfc076969bd0751fa4cc6e95a4f33.zip
Merge pull request #34097 from kule/master
Parameterized mailers can configure delivery job
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 1aa7485d3e..db6fc7ee9c 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,14 @@
+* Allow ActionMailer classes to configure the parameterized delivery job
+ Example:
+ ```
+ class MyMailer < ApplicationMailer
+ self.parameterized_delivery_job = MyCustomDeliveryJob
+ ...
+ end
+ ```
+
+ *Luke Pearce*
+
* `ActionDispatch::IntegrationTest` includes `ActionMailer::TestHelper` module by default.
*Ricardo Díaz*