diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-03 13:28:21 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-03 13:28:21 -0300 |
commit | ae5f2b4e79f3e41aad8280109d8bfc788a1a2733 (patch) | |
tree | 1b0c049d9e0994288b0172d1bf4fc03649f72010 | |
parent | cecbf9ed32ab19d34ecae278f247a552d853b329 (diff) | |
download | rails-ae5f2b4e79f3e41aad8280109d8bfc788a1a2733.tar.gz rails-ae5f2b4e79f3e41aad8280109d8bfc788a1a2733.tar.bz2 rails-ae5f2b4e79f3e41aad8280109d8bfc788a1a2733.zip |
Document config.action_mailer.deliver_later_queue_name
Also add a CHANGELOG entry for #18587
[ci skip]
-rw-r--r-- | actionmailer/CHANGELOG.md | 5 | ||||
-rw-r--r-- | guides/source/configuring.md | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index acdc4c7dc9..7c1b0b215a 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -1,3 +1,8 @@ +* Add `config.action_mailer.deliver_later_queue_name` configuration to set the + mailer queue name. + + *Chris McGrath* + * `assert_emails` in block form use the given number as expected value. This makes the error message much easier to understand. diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 8734a9c762..b3a1ae6779 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -517,6 +517,8 @@ There are a number of settings available on `config.action_mailer`: config.action_mailer.show_previews = false ``` +* `config.action_mailer.deliver_later_queue_name`. specifies the queue name for mailers. By default this is `mailers`. + ### Configuring Active Support There are a few configuration options available in Active Support: |