aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2017-06-15 07:02:47 -0500
committerGitHub <noreply@github.com>2017-06-15 07:02:47 -0500
commit95ae033e7f6747fa7a65c74c66922c8d9fe66808 (patch)
tree9c7b501f4bc02a9c80bedbbc7e2d9653f86a1ead /actionmailer/CHANGELOG.md
parentd9496c19c07d56bb200acd7312bf5d6355d515f4 (diff)
parentd9bbde09fc57b29b889baadda18da943428fb06a (diff)
downloadrails-95ae033e7f6747fa7a65c74c66922c8d9fe66808.tar.gz
rails-95ae033e7f6747fa7a65c74c66922c8d9fe66808.tar.bz2
rails-95ae033e7f6747fa7a65c74c66922c8d9fe66808.zip
Merge pull request #29457 from halogenandtoast/mm-configure_delivery_job
Allow mailers to configure their delivery job
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index e488d867de..83067dfd38 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1 +1,11 @@
+* Allow ActionMailer classes to configure their delivery job
+
+ class MyMailer < ApplicationMailer
+ self.delivery_job = MyCustomDeliveryJob
+
+ ...
+ end
+
+ *Matthew Mongeau*
+
Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/actionmailer/CHANGELOG.md) for previous changes.