Mail () to Cc: not sending
Posted: Fri Feb 25, 2005 9:21 am
Hi, I am having a bit of trouble sending mail with mail() but the problem appears to be only with the secondary (cc:) address.
I receive email main addressee but the Cc: doesn't receive anything.
I am using the following for extra headers and for the Cc and From info
When I receive mail to the main To: address it lists the Cc: email and the From: email, but the Cc: address doesn't receive the email. It gives the appearance that it's working.
Thanks
I receive email main addressee but the Cc: doesn't receive anything.
I am using the following for extra headers and for the Cc and From info
Code: Select all
$headersx = 'MIME-Version: 1.0' . "\r\n";
$headersx .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headersx .= 'From: ' . $useremail . "\r\n";
$headersx .= 'Cc: myemail@mydomain.com' . "\r\n";Thanks