This article mainly introduces how php sends html-format text emails, including MIME versions, character sets, and content types, for more information about how php sends html-format text emails, see the following example. Share it with you for your reference. The specific implementation method is as follows:
<? Php $ to = "simon@mailexample.com, elaine@mailexample.com"; // Set recipient $ subject = "This is a test"; // Set e-mail subject // Set e-mail content: $ message =" This is a test Dear all,
This is a test for HTML mail sending.
"; // Set the Content-type header $ header =" MIME-Version: 1.0/r/n "; // Set the MIME Version $ header. = "Content-type: text/html; charset = ISO-8859-1/r/n"; // set the Content type and character set // Set recipient, sender information $ header. = "To: Simon
, Elaine
/R/n "; // Set the recipient $ header. =" From: PHP Tester
/R/n "; // Set the sender $ header. = "Cc: Peter@mailexample.com/r/n"; // sets Cc $ header. = "Bcc: David@mailexample.com/r/n"; // Set the echo $ header; mail ($ to, $ subject, $ message, $ header ); // send an email?>
I hope this article will help you with php programming.