diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-02-27 04:31:06 -0800 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-02-27 04:31:06 -0800 |
commit | a87687e5fdba8a586f9b7b8df6a0b5edd3201484 (patch) | |
tree | dff98cf6bc7aeaecefc0185b4a841e47843dafd2 /guides/source | |
parent | b080ad35a59ec5f39031277ea89181ca7b651b9a (diff) | |
parent | 063ba216c071ceaecf11d392008a4436bc027e4b (diff) | |
download | rails-a87687e5fdba8a586f9b7b8df6a0b5edd3201484.tar.gz rails-a87687e5fdba8a586f9b7b8df6a0b5edd3201484.tar.bz2 rails-a87687e5fdba8a586f9b7b8df6a0b5edd3201484.zip |
Merge pull request #9359 from justinwb/master
Removed template_root as a configuration option
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 a5058aa749..8720aae169 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -507,7 +507,6 @@ The following configuration options are best made in one of the environment file | Configuration | Description | |---------------|-------------| -|`template_root`|Determines the base from which template references will be made.| |`logger`|Generates information on the mailing run if available. Can be set to `nil` for no logging. Compatible with both Ruby's own `Logger` and `Log4r` loggers.| |`smtp_settings`|Allows detailed configuration for `:smtp` delivery method:<ul><li>`:address` - Allows you to use a remote mail server. Just change it from its default "localhost" setting.</li><li>`:port` - On the off chance that your mail server doesn't run on port 25, you can change it.</li><li>`:domain` - If you need to specify a HELO domain, you can do it here.</li><li>`:user_name` - If your mail server requires authentication, set the username in this setting.</li><li>`:password` - If your mail server requires authentication, set the password in this setting.</li><li>`:authentication` - If your mail server requires authentication, you need to specify the authentication type here. This is a symbol and one of `:plain`, `:login`, `:cram_md5`.</li><li>`:enable_starttls_auto` - Set this to `false` if there is a problem with your server certificate that you cannot resolve.</li></ul>| |`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>| |