0
@@ -9,8 +9,8 @@ module ActionMailer
0
# class ApplicationMailer < ActionMailer::Base
0
- # # (Properties can also be specified via accessor methods
0
- # # i.e. self.subject = "foo") and instance variables (@subject = "foo").
0
+ # # Properties can also be specified via accessor methods
0
+ # # (i.e. self.subject = "foo") and instance variables (@subject = "foo").
0
# def signup_notification(recipient)
0
# recipients recipient.email_address_with_name
0
# subject "New account information"
0
@@ -71,7 +71,7 @@ module ActionMailer
0
- # # After this
post_notification will look for "templates/application_mailer/post_notification.rhtml"
0
+ # # After this
, post_notification will look for "templates/application_mailer/post_notification.rhtml"
0
# ApplicationMailer.template_root = "templates"
0
# ApplicationMailer.create_comment_notification(david, hello_world) # => a tmail object
0
@@ -87,11 +87,11 @@ module ActionMailer
0
# Can be set to nil for no logging. Compatible with both Ruby's own Logger and Log4r loggers.
0
# * <tt>server_settings</tt> - Allows detailed configuration of the server:
0
- # * <tt>:address</tt> Allows you to use a remote mail server. Just change it away from it's default "localhost" setting.
0
- # * <tt>:port</tt> On the off change that your mail server doesn't run on port 25, you can change it.
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 and password in these two settings.
0
- # * <tt>:password</tt> If your mail server requires authentication, set the username and password in these two settings.
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
@@ -108,12 +108,12 @@ module ActionMailer
0
# * <tt>default_charset</tt> - The default charset used for the body and to encode the subject. Defaults to UTF-8. You can also
0
# pick a different charset from inside a method with <tt>@charset</tt>.
0
- # * <tt>default_content_type</tt> - The default content type used for
main part of the message. Defaults to "text/plain". You
0
+ # * <tt>default_content_type</tt> - The default content type used for
the main part of the message. Defaults to "text/plain". You
0
# can also pick a different content type from inside a method with <tt>@content_type</tt>.
0
# * <tt>default_mime_version</tt> - The default mime version used for the message. Defaults to nil. You
0
# can also pick a different value from inside a method with <tt>@mime_version</tt>. When multipart messages are in
0
# use, <tt>@mime_version</tt> will be set to "1.0" if it is not set inside a method.
0
- # * <tt>default_implicit_parts_order</tt> - When a message is built implicitly (i.e. multiple parts are assemble
from templates
0
+ # * <tt>default_implicit_parts_order</tt> - When a message is built implicitly (i.e. multiple parts are assemble
d from templates
0
# which specify the content type in their filenames) this variable controls how the parts are ordered. Defaults to
0
# ["text/html", "text/enriched", "text/plain"]. Items that appear first in the array have higher priority in the mail client
0
# and appear last in the mime encoded message. You can also pick a different order from inside a method with
Comments
No one has commented yet.