How do I send HTML formatted mail using PHP

2019-01-24 11:57发布

问题:

Hey guys, trying to send a html email via mail(), however gmail just displays the email as plain text, no mark up, eg:

mail("blah@blah.com", "subject", "<i>Italic Text</i>");

just appears as

<i>Italic Text</i>

Any ideas?

回答1:

You have to specify that the contents of the mail is HTML:

mail("blah@blah.com", "subject", "<i>Italic Text</i>", "Content-type: text/html; charset=iso-8859-1");


回答2:

See example 4 on this page:

http://php.net/manual/en/function.mail.php



回答3:

You need to have a properly formed html doc:

$msg = "<html><head></head><body><i>Italic Text</i></body></html>";

Edit:

And send headers:

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

mail("blah@blah.com", $msg, $headers);


回答4:

I believe you must set the content-type to text/html in your headers.

Something like the string "Content-type:text/html"

Where to "insert" this header? Take a look at the function reference at http://php.net/manual/en/function.mail.php



回答5:

In order for it to be properly interpreted, you must also set the headers in the email, especially:

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

You should also set the other usual headers. The message can finally be sent like this:

mail($to, $subject, $message, $headers);

You should refer to the php manual mail page for more information.