aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2014-08-18 22:22:46 -0700
committerGodfrey Chan <godfreykfc@gmail.com>2014-08-18 22:22:46 -0700
commitf2dda9fe255e2a64ba96ee7eda951d7a9143823e (patch)
tree8b6fb5fb3f6ef77f5577578d8ecbbdc79ae31048 /guides/source
parentb08241859f02d1c951516f0f31b73158aa2380b9 (diff)
downloadrails-f2dda9fe255e2a64ba96ee7eda951d7a9143823e.tar.gz
rails-f2dda9fe255e2a64ba96ee7eda951d7a9143823e.tar.bz2
rails-f2dda9fe255e2a64ba96ee7eda951d7a9143823e.zip
Sync Action Mailer release notes [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/4_2_release_notes.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md
index 4ed9fad1e5..8ca7323fe6 100644
--- a/guides/source/4_2_release_notes.md
+++ b/guides/source/4_2_release_notes.md
@@ -260,8 +260,17 @@ Action Mailer
Please refer to the [Changelog][action-mailer] for detailed changes.
+### Deprecations
+
+* Deprecated `*_path` helpers in mailers. Always use `*_url` helpers instead.
+ ([Pull Request](https://github.com/rails/rails/pull/15840))
+
### Notable changes
+* Introduced `deliver_later` which enqueues a job on the application's queue
+ to deliver the mailer asynchronously.
+ ([Pull Request](https://github.com/rails/rails/pull/16485))
+
* Added the `show_previews` configuration option for enabling mailer previews
outside of the development environment.
([Pull Request](https://github.com/rails/rails/pull/15970))