Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Sanghi committed Sep 25, 2010
1 parent db8b3e7 commit de88030
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions railties/guides/source/action_mailer_basics.textile
Expand Up @@ -242,13 +242,13 @@ end
:class => 'photos' %>
</erb>

h5. Sending email to multiple recipients
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 <tt>to:</tt> key however expects a string so you have join the list of recipients using a comma.

<ruby>
Class AdminMailer < ActionMailer::Base
default :to => Admin.all.map{|admin| admin.email}.join(", "),
default :to => Admin.all.map(&:email).join(", "),
:from => "notification@example.com"

def new_registration(user)
Expand All @@ -258,7 +258,7 @@ It is possible to send email to one or more recipients in one email (for e.g. in
end
</ruby>

h5. Sending email with names
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
to format the email address in the format <tt>"Name &lt;email&gt;"</tt>.
Expand Down

0 comments on commit de88030

Please sign in to comment.