[Solved] Send HTML Email using PHP – Not working when using [email protected]?


For your question recently closed: https://stackoverflow.com/questions/34106770/send-email-using-php-from-address-not-working

Try this:

$headers .= "From: Your Name <$from>\r\n";

and you can also add the 5th mail parameter:

mail($to, $subject, $body, $headers, '[email protected]').

Works for me with these headers:

$from = "$name <$email>\r\n";
$to = "$username <$useremail>\r\n";
$headers="MIME-Version: 1.0" . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers .= "From: $name <$email>\r\n";
$headers .= "Reply-To: $name <$email>\r\n";

solved Send HTML Email using PHP – Not working when using [email protected]?