diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-04-23 10:39:30 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-04-23 10:39:30 -0400 |
commit | 3ec76256e88d36e251c388921d0fd172e86fa297 (patch) | |
tree | 3b437a46b49279a061055c9a3347c0bf49b610db /guides/source | |
parent | 31f27aa25806670545a7d17f5c6a04d0acd27beb (diff) | |
download | rails-3ec76256e88d36e251c388921d0fd172e86fa297.tar.gz rails-3ec76256e88d36e251c388921d0fd172e86fa297.tar.bz2 rails-3ec76256e88d36e251c388921d0fd172e86fa297.zip |
Finish Action Mailer section in release notes
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/5_1_release_notes.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/5_1_release_notes.md b/guides/source/5_1_release_notes.md index f9062920f0..6c9b519605 100644 --- a/guides/source/5_1_release_notes.md +++ b/guides/source/5_1_release_notes.md @@ -279,12 +279,12 @@ Action Mailer Please refer to the [Changelog][action-mailer] for detailed changes. -### Removals - -### Deprecations - ### Notable changes +* Exception handling: use `rescue_from` to handle exceptions raised by + mailer actions, by message delivery, and by deferred delivery jobs. + ([commit](https://github.com/rails/rails/commit/e35b98e6f5c54330245645f2ed40d56c74538902)) + * Allowed setting custom content type when attachments are included and body is set inline. ([Pull Request](https://github.com/rails/rails/pull/27227)) |