Skip to content

Commit 1fd0bc1

Browse files
Fix missing backtick in mailer guide
Also remove extraneous line break from paragraph in configuring guide related to mailer config. [ci skip]
1 parent 0f61a0e commit 1fd0bc1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

guides/source/action_mailer_basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ files (environment.rb, production.rb, etc...)
818818
|`perform_deliveries`|Determines whether deliveries are actually carried out when the `deliver` method is invoked on the Mail message. By default they are, but this can be turned off to help functional testing. If this value is `false`, `deliveries` array will not be populated even if `delivery_method` is `:test`.|
819819
|`deliveries`|Keeps an array of all the emails sent out through the Action Mailer with delivery_method :test. Most useful for unit and functional testing.|
820820
|`delivery_job`|The job class used with `deliver_later`. Defaults to `ActionMailer::MailDeliveryJob`.|
821-
|`deliver_later_queue_name`|The name of the queue used with the default `delivery_job`. Defaults to `:mailers|
821+
|`deliver_later_queue_name`|The name of the queue used with the default `delivery_job`. Defaults to `:mailers`|
822822
|`default_options`|Allows you to set default values for the `mail` method options (`:from`, `:reply_to`, etc.).|
823823

824824
For a complete writeup of possible configurations see the

guides/source/configuring.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2120,8 +2120,7 @@ Specifies whether the mailer templates should perform fragment caching or not. I
21202120

21212121
Specifies the Active Job queue to use for the default delivery job (see `config.action_mailer.delivery_job`). When this option is set to `nil`, delivery jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`).
21222122

2123-
Mailer classes can override this to use a different queue. Note that this only applies when using the default delivery job. If your mailer is using a custom
2124-
job, its queue will be used.
2123+
Mailer classes can override this to use a different queue. Note that this only applies when using the default delivery job. If your mailer is using a custom job, its queue will be used.
21252124

21262125
Ensure that your Active Job adapter is also configured to process the specified queue, otherwise delivery jobs may be silently ignored.
21272126

0 commit comments

Comments
 (0)