Hi,
The headers seem to be fine. I am using the mail() function and my code reads as follows:
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: conference@toastmasters.org.pt \r\n" ."X-Mailer: php \n";
$headers .= "Cc: conference@toastmasters.org.pt \n";
if (mail($to, $subject, $body, $headers)) .....
I am not using any yahoo account to send mails and have only one FROM address as seen above..
I just happened to notice another thing. The mails I received in CC all have a FROM address - Toastmasters@.SYNTAX-ERROR.
Is there anything wrong with my code?