diff options
author | Raul Murciano <raul@murciano.net> | 2011-08-14 10:14:28 -0700 |
---|---|---|
committer | Raul Murciano <raul@murciano.net> | 2011-08-14 10:20:02 -0700 |
commit | 51b2502c5e059bb31ecb5881ec1b19279a49cadf (patch) | |
tree | 59e93cf63af29645db54a7ecdb57b46d0736a56c /railties/guides/source | |
parent | 169a50930f330f94c189b5fcd665a3d209ccbcfa (diff) | |
download | rails-51b2502c5e059bb31ecb5881ec1b19279a49cadf.tar.gz rails-51b2502c5e059bb31ecb5881ec1b19279a49cadf.tar.bz2 rails-51b2502c5e059bb31ecb5881ec1b19279a49cadf.zip |
Action Mailer guide: mention how to use :cc and :bcc parameters.
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/action_mailer_basics.textile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/action_mailer_basics.textile b/railties/guides/source/action_mailer_basics.textile index 4bf9161425..517a47d233 100644 --- a/railties/guides/source/action_mailer_basics.textile +++ b/railties/guides/source/action_mailer_basics.textile @@ -256,6 +256,8 @@ It is possible to send email to one or more recipients in one email (for e.g. in end </ruby> +The same format can be used to set carbon copy (Cc:) and blind carbon copy (Bcc:) recipients, by using the <tt>:cc</tt> and <tt>:bcc</tt> keys respectively. + h5. Sending Email With Name Sometimes you wish to show the name of the person instead of just their email address when they receive the email. The trick to doing that is |