diff options
author | Justin Bingham <justin.bingham@janeirodigital.com> | 2013-02-21 10:40:34 -0500 |
---|---|---|
committer | Justin Bingham <justin.bingham@janeirodigital.com> | 2013-02-21 10:40:34 -0500 |
commit | 063ba216c071ceaecf11d392008a4436bc027e4b (patch) | |
tree | 3a4df9697f9775f91b87052f98479cb9dc25bc62 | |
parent | ea544e9b481d669fa0a0863b872b6e9034806d07 (diff) | |
download | rails-063ba216c071ceaecf11d392008a4436bc027e4b.tar.gz rails-063ba216c071ceaecf11d392008a4436bc027e4b.tar.bz2 rails-063ba216c071ceaecf11d392008a4436bc027e4b.zip |
Removed template_root as a configuration option
Removed template root from actionmailer configuration options as it seems to have been pulled out completely in favor of explicit definition via template_path / template_name.
-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 513ae1272f..40b9a049c9 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>| |