Multiple Reply-to needed
Posted: Wed Apr 06, 2005 12:41 pm
Hi All,
I have a mail function that works great however I need to have this work with multiple reply-to's. So it sends the email fine however when someone hit reply, it need to go back to 2 people. Take a look at my script and please let me know what needs to be added. Thanks
I have a mail function that works great however I need to have this work with multiple reply-to's. So it sends the email fine however when someone hit reply, it need to go back to 2 people. Take a look at my script and please let me know what needs to be added. Thanks
Code: Select all
$htmlHeaders = "";
$htmlHeaders .= "From: XXXX <xxx@xxx.com>\r\n" ;
$htmlHeaders .= "Reply-to: XXXX <xxx@xxx.com>\r\n";
$htmlHeaders .= "MIME-Version: 1.0\r\n";
$htmlHeaders .= "Content-type: text/html; charset=iso-8859-1\r\n";
mail($rec, $sub, $mess, $htmlHeaders, "-f xxx@xxx.com");