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. |