diff options
author | Cory Logan <cory@counterbeing.com> | 2012-09-23 17:08:35 +0700 |
---|---|---|
committer | Cory Logan <cory@counterbeing.com> | 2012-09-23 17:08:35 +0700 |
commit | 4fc620cc9124cb908a9585dc680b935f3c755dd7 (patch) | |
tree | c897accbad12a64f8401aa2221f7f4dff11cc3ee /guides | |
parent | 417aa431eb43a8ecbc7edae2d056edebf4f8792f (diff) | |
download | rails-4fc620cc9124cb908a9585dc680b935f3c755dd7.tar.gz rails-4fc620cc9124cb908a9585dc680b935f3c755dd7.tar.bz2 rails-4fc620cc9124cb908a9585dc680b935f3c755dd7.zip |
Removed duplicate line describing "default_options".
[ci skip]
Diffstat (limited to 'guides')
-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 de5c15fe54..5e731d0a18 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -482,7 +482,6 @@ The following configuration options are best made in one of the environment file |`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.| -|`default_options`|Allows you to set default values for the `mail` method options (`:from`, `:reply_to`, etc.).| ### Example Action Mailer Configuration |