|
Posted by davjoh on 09/27/07 21:15
The following describes the problem I am having. Can anyone help?
$send_to[] = "davjoh123@yahoo.com";
$send_to[] = "production@advisiongraphics.com";
$send_to[] = "advision_galiano@mac.com";
// send email
foreach ($send_to as $dest)
mail($dest,$email_subject,$message,$header); //This line NOT
working
//expecting it to send email to all the above addresses assigned to
$send_to[] array. Is it because values have not been added to $dest
and if so how to do
mail($r["email"],$email_subject,$message,$header); //This line
working
[Back to original message]
|