I have tried the following with little success:
$fromEmail = "something.com <noreply@something.com>\r\n";
$headers = 'From: '.$fromEmail;
$headers .= 'Reply-To: '.$fromEmail;
$headers .= 'Return-Path: '.$fromEmail;
$headers = 'MIME-Version: 1.0' . '\n';
$headers .= 'Content-type: text/html; charset=iso-8859-1' . '\r\n';
if(mail($to, $subject, $message, $headers)) { echo "1"; exit; }
I have tried commenting out the Reply-To: and Return-Path: lines as well as replacing the if(... line with:
if(mail($to, $subject, $message, $headers,'-fnoreply@something.com')) { ...
In all cases the email arrives but is from anonymous@...
'\r\n'instead of'\n'). Also, it seems like including the CRLF in$fromEmailis a bad idea -- I'd put it in the code that builds up the headers. – tomlogic Jan 4 at 0:02