diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-11-15 00:07:35 +0100 |
---|---|---|
committer | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-11-15 00:07:35 +0100 |
commit | 72fda46214da24e846a8f3332e153361247902a4 (patch) | |
tree | 7ddf29bc070c9ee4edf8af0cb144a6be5fd5ab24 | |
parent | 324569bb113ab6525d3eb1d5e35fa6bc911917eb (diff) | |
parent | 330d65d31222148019855d6914e35c8cd9f90cd5 (diff) | |
download | rails-72fda46214da24e846a8f3332e153361247902a4.tar.gz rails-72fda46214da24e846a8f3332e153361247902a4.tar.bz2 rails-72fda46214da24e846a8f3332e153361247902a4.zip |
Merge branch 'master' of github.com:lifo/docrails
-rw-r--r-- | railties/guides/source/action_mailer_basics.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_mailer_basics.textile b/railties/guides/source/action_mailer_basics.textile index 41738827b2..8d2ce44e93 100644 --- a/railties/guides/source/action_mailer_basics.textile +++ b/railties/guides/source/action_mailer_basics.textile @@ -446,7 +446,7 @@ The following configuration options are best made in one of the environment file |sendmail_settings|Allows you to override options for the :sendmail delivery method.<ul><li>:location - The location of the sendmail executable. Defaults to /usr/sbin/sendmail.</li><li>:arguments - The command line arguments to be passed to sendmail. Defaults to -i -t.</li></ul>| |raise_delivery_errors|Whether or not errors should be raised if the email fails to be delivered.| |delivery_method|Defines a delivery method. Possible values are :smtp (default), :sendmail, :file and :test.| -|perform_deliveries|Determines whether deliver_* methods are actually carried out. By default they are, but this can be turned off to help functional testing.| +|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.| h4. Example Action Mailer Configuration |