- Code: Select all
$str_to = "tom@yahoo.com, dick@aol.com, harry@hotmail.com"
mail($str_to, $subject, $message, $headers);
Most mail setups seem to let you have multiple comma seperated addresses. If so, you might be able to build a multiple address 'to' string to use with the mail function.
best of luck..


