diff options
author | Andy Lindeman <alindeman@gmail.com> | 2012-12-10 13:43:29 -0500 |
---|---|---|
committer | Andy Lindeman <alindeman@gmail.com> | 2012-12-10 13:43:29 -0500 |
commit | 5c2eb889c204f3de33b1cea2c7bc8b8469ec7254 (patch) | |
tree | f89720640273207878489080de25c01b5d54bf15 /guides/source | |
parent | 981900259e679c44dd4dacf45a24116c919a1311 (diff) | |
download | rails-5c2eb889c204f3de33b1cea2c7bc8b8469ec7254.tar.gz rails-5c2eb889c204f3de33b1cea2c7bc8b8469ec7254.tar.bz2 rails-5c2eb889c204f3de33b1cea2c7bc8b8469ec7254.zip |
`config.action_mailer.async` is no longer used
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_mailer_basics.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index aaf04f4256..6bb3439e5e 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -516,7 +516,6 @@ The following configuration options are best made in one of the environment file |`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.| |`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.| |`default_options`|Allows you to set default values for the `mail` method options (`:from`, `:reply_to`, etc.).| -|`async`|Setting this flag will turn on asynchronous message sending, message rendering and delivery will be pushed to `Rails.queue` for processing.| ### Example Action Mailer Configuration |