Example of sending NetEase 126 email via phpmailer

Source: Internet
Author: User
Example of sending NetEase 126 email via phpmailer
This article describes how to use phpmailer to send NetEase 126.com emails. For more information, see.

Example of sending mails using PHPMailer:

     IsSMTP (); // email server $ mail-> Host = "smtp.126.com"; $ mail-> SMTPDebug = 0; // use SMPT to verify $ mail-> SMTPAuth = true; // SMTP-verified user name $ mail-> Username = "jbxue@126.com"; // SMTP-verified secret $ mail-> Password = "password "; // Set the encoding format $ mail-> CharSet = "UTF-8"; // set the topic $ mail-> Subject = "test "; // $ mail-> AltBody = "To view the message, please use an HTML compatible email viewer! "; // Set the sender $ mail-> SetFrom ('jbxue @ 126.com ', 'test'); // send an email in html format $ mail-> MsgHTML ($ body ); // recipient email name $ mail-> AddAddress ("jbxue@126.com", "test"); // send the email if (! $ Mail-> Send () {echo "Mailer Error:". $ mail-> ErrorInfo;} else {echo "Message sent! ";}?>

Phpmailer files need to be introduced: PHPMailer mail sending class V5.1.

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.