diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-01-11 13:54:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-11 13:54:37 -0500 |
commit | eedd9548ade88085a38e667a13b54fdbcde8e45b (patch) | |
tree | 604c9ef31206df9c9f1bb5b4256ae4aeef1e7536 /guides | |
parent | 5f9e0f848e83688a7f7b5c0b2285144563d84f36 (diff) | |
parent | 3f6449f4bf928a4adeb99dfb1bd146aab069cdee (diff) | |
download | rails-eedd9548ade88085a38e667a13b54fdbcde8e45b.tar.gz rails-eedd9548ade88085a38e667a13b54fdbcde8e45b.tar.bz2 rails-eedd9548ade88085a38e667a13b54fdbcde8e45b.zip |
Merge pull request #34913 from bogdanvlviv/docs_config_action_mailer_delivery_job
Add info about `config.action_mailer.delivery_job` to the guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 3a7baf84a9..32682fb91f 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -721,6 +721,8 @@ There are a number of settings available on `config.action_mailer`: * `config.action_mailer.perform_caching` specifies whether the mailer templates should perform fragment caching or not. By default this is `false` in all environments. +* `config.action_mailer.delivery_job` specifies delivery job for mail. Defaults to `ActionMailer::DeliveryJob`. + ### Configuring Active Support @@ -905,6 +907,7 @@ text/javascript image/svg+xml application/postscript application/x-shockwave-fla - `config.action_view.default_enforce_utf8`: `false` - `config.action_dispatch.use_cookies_with_metadata`: `true` +- `config.action_mailer.delivery_job`: `"ActionMailer::MailDeliveryJob"` - `config.active_job.return_false_on_aborted_enqueue`: `true` - `config.active_storage.queues.analysis`: `:active_storage_analysis` - `config.active_storage.queues.purge`: `:active_storage_purge` |