Code:
<?php
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$from = "From: [email protected]";
$arr = array("[email protected]", "[email protected]", "[email protected]");
reset($arr);
foreach ($arr as $to) {
echo "To: $to<br />\n";
if (mail($to,$subject,$body,$from)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
sleep(3);
}
?>