public
Fork of lifo/doc-rails
Description: Repository for improving Rails documentation
Homepage: http://www.rubyonrails.org
Clone URL: git://github.com/zmalltalker/doc-rails.git
Search Repo:
fixed-width font for symbols in Action Mailer docs
Xavier Noria (author)
Thu Apr 10 07:26:51 -0700 2008
commit  fa2e6bd4b17c0fc161c2db7b736390a34e19a2d7
tree    51edfa8fd21c8e0c460e5c839396afc3e4cd57b8
parent  c196a13c34c6abe13ae7bc7839a376d7a80b4e46
...
183
184
185
186
 
187
188
189
190
191
 
192
193
194
195
196
197
198
 
199
200
 
201
202
203
204
205
 
206
207
208
209
210
 
211
212
213
...
183
184
185
 
186
187
188
189
190
 
191
192
193
194
195
196
197
 
198
199
 
200
201
202
203
204
 
205
206
207
208
209
 
210
211
212
213
0
@@ -183,31 +183,31 @@ module ActionMailer #:nodoc:
0
   #
0
   # These options are specified on the class level, like <tt>ActionMailer::Base.template_root = "/my/templates"</tt>
0
   #
0
- # * <tt>template_root</tt> - template root determines the base from which template references will be made.
0
+ # * <tt>template_root</tt> - Determines the base from which template references will be made.
0
   #
0
   # * <tt>logger</tt> - the logger is used for generating information on the mailing run if available.
0
   # Can be set to nil for no logging. Compatible with both Ruby's own Logger and Log4r loggers.
0
   #
0
- # * <tt>smtp_settings</tt> - Allows detailed configuration for :smtp delivery method:
0
+ # * <tt>smtp_settings</tt> - Allows detailed configuration for <tt>:smtp</tt> delivery method:
0
   # * <tt>:address</tt> Allows you to use a remote mail server. Just change it from its default "localhost" setting.
0
   # * <tt>:port</tt> On the off chance that your mail server doesn't run on port 25, you can change it.
0
   # * <tt>:domain</tt> If you need to specify a HELO domain, you can do it here.
0
   # * <tt>:user_name</tt> If your mail server requires authentication, set the username in this setting.
0
   # * <tt>:password</tt> If your mail server requires authentication, set the password in this setting.
0
   # * <tt>:authentication</tt> If your mail server requires authentication, you need to specify the authentication type here.
0
- # This is a symbol and one of :plain, :login, :cram_md5
0
+ # This is a symbol and one of <tt>:plain</tt>, <tt>:login</tt>, <tt>:cram_md5</tt>
0
   #
0
- # * <tt>sendmail_settings</tt> - Allows you to override options for the :sendmail delivery method
0
+ # * <tt>sendmail_settings</tt> - Allows you to override options for the <tt>:sendmail</tt> delivery method
0
   # * <tt>:location</tt> The location of the sendmail executable, defaults to "/usr/sbin/sendmail"
0
   # * <tt>:arguments</tt> The command line arguments
0
   # * <tt>raise_delivery_errors</tt> - whether or not errors should be raised if the email fails to be delivered.
0
   #
0
- # * <tt>delivery_method</tt> - Defines a delivery method. Possible values are :smtp (default), :sendmail, and :test.
0
+ # * <tt>delivery_method</tt> - Defines a delivery method. Possible values are <tt>:smtp</tt> (default), <tt>:sendmail</tt>, and <tt>:test</tt>.
0
   #
0
   # * <tt>perform_deliveries</tt> - Determines whether deliver_* methods are actually carried out. By default they are,
0
   # but this can be turned off to help functional testing.
0
   #
0
- # * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with delivery_method :test. Most useful
0
+ # * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with <tt>delivery_method :test</tt>. Most useful
0
   # for unit and functional testing.
0
   #
0
   # * <tt>default_charset</tt> - The default charset used for the body and to encode the subject. Defaults to UTF-8. You can also

Comments

    No one has commented yet.