diff options
author | Raul Murciano <raul@murciano.net> | 2011-08-14 10:24:48 -0700 |
---|---|---|
committer | Raul Murciano <raul@murciano.net> | 2011-08-14 10:24:48 -0700 |
commit | 7712db4c82975403913e0395f860242ead322570 (patch) | |
tree | 1986a78a619777a8082df8d3f87548dd3f040d16 /railties/guides | |
parent | 51b2502c5e059bb31ecb5881ec1b19279a49cadf (diff) | |
download | rails-7712db4c82975403913e0395f860242ead322570.tar.gz rails-7712db4c82975403913e0395f860242ead322570.tar.bz2 rails-7712db4c82975403913e0395f860242ead322570.zip |
Typo
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/action_mailer_basics.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_mailer_basics.textile b/railties/guides/source/action_mailer_basics.textile index 517a47d233..0941b06cfe 100644 --- a/railties/guides/source/action_mailer_basics.textile +++ b/railties/guides/source/action_mailer_basics.textile @@ -242,7 +242,7 @@ end h5. Sending Email To Multiple Recipients -It is possible to send email to one or more recipients in one email (for e.g. informing all admins of a new signup) by setting the list of emails to the <tt>:to</tt> key. The list of emails can be an array of email addresses or a single string with the addresses separated with commas. +It is possible to send email to one or more recipients in one email (for e.g. informing all admins of a new signup) by setting the list of emails to the <tt>:to</tt> key. The list of emails can be an array of email addresses or a single string with the addresses separated by commas. <ruby> class AdminMailer < ActionMailer::Base |