Hello,
Here is my code::
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
mail( "kevin@eyeopenergroup.com", "Work Order Form",
$message, "From: $email" );
header( "Location: http://www.eyeopenergroup.com/thanks.html" );
?>
How do I go about sending this email to multiple people instead of just one..
Thanks,