Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used the drupal example email module (email_example) found here: http://drupal.org/project/examples

I'd like to email multiple recipients and according to http://api.drupal.org/api/drupal/includes!mail.inc/function/drupal_mail/6:

$to: The e-mail address or addresses where the message will be sent to. The formatting of this string must comply with RFC 2822. Some examples are: user@example.com user@example.com, anotheruser@example.com User User , Another User

HOWEVER. When I try to modify $to in function email_example_mail_send($form_values) {

I am not able to add multiple addresses.

either

 $to = "example@place.com";
 $to = $form_values['email1'];

work,

but

$to = "example@place.com", "other@place.com";

or

$to = $form_values['email1'], $form_values['email2'] ;

do not.

share|improve this question

1 Answer

up vote 2 down vote accepted

Your strings aren't properly formatted. What you need is something like this:

$to = $form_values['email1'] . ', ' . $form_values['email2'];

That will place the comma separated email addresses into $to.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.