CHANGELOG.md 532 字节
Newer Older
1 2 3 4 5 6 7 8
*   Add `assert_enqueued_email_with` test helper.

        assert_enqueued_email_with ContactMailer, :welcome do
          ContactMailer.welcome.deliver_later
        end
    
    *Mikkel Malmberg*

R
Ryuta Kamizono 已提交
9
*   Allow Action Mailer classes to configure their delivery job.
10

R
Ryuta Kamizono 已提交
11 12
        class MyMailer < ApplicationMailer
          self.delivery_job = MyCustomDeliveryJob
13

R
Ryuta Kamizono 已提交
14 15 16 17
          ...
        end

    *Matthew Mongeau*
18 19


M
Matthew Draper 已提交
20
Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/actionmailer/CHANGELOG.md) for previous changes.