diff options
author | Johan Andersson <johan.rejeep@gmail.com> | 2009-08-19 11:50:29 +0000 |
---|---|---|
committer | Johan Andersson <johan.rejeep@gmail.com> | 2009-08-19 11:50:29 +0000 |
commit | c92071276911a6a8b0e34466daf351a0447fd856 (patch) | |
tree | 1767f04148791e3ab7cf2c4705438ac4b8881339 /actionmailer | |
parent | 902c78dc268254ff7b10b13aee6caa2c2ab55b39 (diff) | |
download | rails-c92071276911a6a8b0e34466daf351a0447fd856.tar.gz rails-c92071276911a6a8b0e34466daf351a0447fd856.tar.bz2 rails-c92071276911a6a8b0e34466daf351a0447fd856.zip |
Typo. wil should be will
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 5ecefe7c09..d020fdffc2 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -38,7 +38,7 @@ module ActionMailer #:nodoc: # * <tt>cc</tt> - Takes one or more email addresses. These addresses will receive a carbon copy of your email. Sets the <tt>Cc:</tt> header. # * <tt>bcc</tt> - Takes one or more email addresses. These addresses will receive a blind carbon copy of your email. Sets the <tt>Bcc:</tt> header. # * <tt>reply_to</tt> - Takes one or more email addresses. These addresses will be listed as the default recipients when replying to your email. Sets the <tt>Reply-To:</tt> header. - # * <tt>sent_on</tt> - The date on which the message was sent. If not set, the header wil be set by the delivery agent. + # * <tt>sent_on</tt> - The date on which the message was sent. If not set, the header will be set by the delivery agent. # * <tt>content_type</tt> - Specify the content type of the message. Defaults to <tt>text/plain</tt>. # * <tt>headers</tt> - Specify additional headers to be set for the message, e.g. <tt>headers 'X-Mail-Count' => 107370</tt>. # |