aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorSemenyuk Dmitriy <git@semenyukdmitriy.com>2014-01-22 15:27:54 +0600
committerSemenyuk Dmitriy <git@semenyukdmitriy.com>2014-01-22 15:50:01 +0600
commit9e63ead4ae3ba19dcb128f769414be8b21f65f7b (patch)
treef6a3ca4f2af905b4e90be5771a6be43c0673bc17 /guides/source/configuring.md
parent46096a082f98fd9778f4036027318758fbf44e88 (diff)
downloadrails-9e63ead4ae3ba19dcb128f769414be8b21f65f7b.tar.gz
rails-9e63ead4ae3ba19dcb128f769414be8b21f65f7b.tar.bz2
rails-9e63ead4ae3ba19dcb128f769414be8b21f65f7b.zip
[ci skip] Added missing `file` delivery method
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index c30b806907..c954db514b 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -404,7 +404,7 @@ There are a number of settings available on `config.action_mailer`:
* `config.action_mailer.raise_delivery_errors` specifies whether to raise an error if email delivery cannot be completed. It defaults to true.
-* `config.action_mailer.delivery_method` defines the delivery method. The allowed values are `:smtp` (default), `:sendmail`, and `:test`.
+* `config.action_mailer.delivery_method` defines the delivery method and defaults to `:smtp`. See the [configuration section in the Action Mailer guide](http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration) for more info.
* `config.action_mailer.perform_deliveries` specifies whether mail will actually be delivered and is true by default. It can be convenient to set it to false for testing.