diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:32:20 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:32:20 +1100 |
commit | 926d64e8b3a0cfbc233a0c564b5dfb0aeacb9546 (patch) | |
tree | 5ddce1da953ebb802991d7a71034d5b6504bdbbe /railties | |
parent | 8d1c56148f4b0c3088862c7afb58ab22363a7695 (diff) | |
download | rails-926d64e8b3a0cfbc233a0c564b5dfb0aeacb9546.tar.gz rails-926d64e8b3a0cfbc233a0c564b5dfb0aeacb9546.tar.bz2 rails-926d64e8b3a0cfbc233a0c564b5dfb0aeacb9546.zip |
There is no config.action_mailer.default_charset method for Rails 3
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 67028c683b..b5f32671a8 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -187,8 +187,6 @@ There are a number of settings available on +config.action_mailer+: * +config.action_mailer.perform_deliveries+ specifies whether mail will actually be delivered. By default this is +true+; it can be convenient to set it to +false+ for testing. -* +config.action_mailer.default_charset+ tells Action Mailer which character set to use for the body and for encoding the subject. It defaults to +utf-8+. - * +config.action_mailer.default_content_type+ specifies the default content type used for the main part of the message. It defaults to "text/plain" * +config.action_mailer.default_mime_version+ is the default MIME version for the message. It defaults to +1.0+. |