Related, possible duplicate: http://stackoverflow.com/questions/1892409/php-mail-problem
Hello;
I have a site hosted on GoDaddy, that processes several news web sites and emails a summary of articles. It has been working fine, until two days ago when I stopped receiving emails. mail()
returns true, and when sending basic text emails I receive them, only HTML I can't receive! Any idea about the cause or how to troubleshoot this issue?
Thanks
Update: This is the code I use (PHP):
$headers = 'From: Aggregator Daemon' . "\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=windows-1252' . "\r\n";
$mailres=mail("[email protected]","GN Aggregator - $today Bulletin",$ebody,$headers);
Thanks