Well...I'm having this problem
I'm using this script to send html e-mails
//This will allow for html in the message
$headers = "MIME-Version: 1.0 \r\n";
$headers .= "Content-type: text/html; ";
$headers .= "charset=iso-8859-1\r\n";
$headers .= "From: No Reply <no-reply@myserver.com>\r\n";
$headers .= "Reply-to: $email2";
//This will send the actual email
mail($email,"$subject","$message",$headers);
It works but wen someone receive the e-mail it does not said that comes from no-reply@myserver.com and it does not reply to the e-mail that I want.
Alse I will like to know how to send CC: on the e-mail.
Well Thanks