Skip to content

Commit

Permalink
Update ActionMailer guide's '2.3 Complete List of Action Mailer User-…
Browse files Browse the repository at this point in the history
…Settable Attributes' to show that the attribute 'cc' and 'bcc' can take a string or an Array of strings.
  • Loading branch information
hardbap committed Apr 21, 2009
1 parent 81d595c commit 4c21026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions railties/guides/source/action_mailer_basics.textile
Expand Up @@ -137,9 +137,9 @@ Hence, if the method name starts with +deliver_+ followed by any combination of

h4. Complete List of Action Mailer User-Settable Attributes

|bcc| The BCC addresses of the email|
|bcc| The BCC addresses of the email, either as a string (for a single address) or an array of strings (for multiple addresses)|
|body| The body of the email. This is either a hash (in which case it specifies the variables to pass to the template when it is rendered), or a string, in which case it specifies the actual body of the message|
|cc| The CC addresses for the email|
|cc| The CC addresses for the email, either as a string (for a single address) or an array of strings (for multiple addresses)|
|charset| The charset to use for the email. This defaults to the +default_charset+ specified for ActionMailer::Base.|
|content_type| The content type for the email. This defaults to "text/plain" but the filename may specify it|
|from| The from address of the email|
Expand Down

0 comments on commit 4c21026

Please sign in to comment.