Php method for sending html text emails

Source: Internet
Author: User
Tags php tester
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.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.