Hey everybody...
For some reason or another, which I can't seem to find any information about, when I send an email from a PHP form on my website, the email arrives in Outlook without a "Sent" time in the email "Reading Pane" header, unlike every other email that I have received... So I am wondering, what could possibly cause this, since ONLY these emails do this?
Here's my PHP Mail code... Thanks in advance for any help...
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ".$EmailFromEmailAddress."\r\n";
$headers .= "Bcc: ".$EmailBccEmailAddress."\r\n";
//$headers .= "From: \"".$EmailFromName."\" <".$EmailFromEmailAddress.">\n";
//$headers .= "To: \"".$EmailToName."\" <".$EmailToEmailAddress.">\n";
//$headers .= "Bcc: \"".$EmailBccName."\" <".$EmailBccEmailAddress.">\n";
mail($EmailToEmailAddress, $EmailSubject, $EmailBody, $headers);
Edit:
Forgot to mention what PHP version I have... Here you go...
PHP Version 5.2.9