blob: 9993a11c9d3590a3880c27fade99096669f88d97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
* Allow Action Mailer 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.
|