Phpmailer is a free php email sending plug-in. we can use phpmailer to log on to the specified email and then use this email to send an automatic email to us. now, the free email is like 163, sina supports all of them. if you have trouble talking about it, let's take a look at a phpmainer1 server that does not send emails locally. it is a good choice to send emails using the ready-made SMTP server, the tools used here are phpmailer (Version 5.2.0). For SMTP servers, choose gmail and 163.
1. use scripts sent by gmail
Include ("class. phpmailer. php "); include (" class. smtp. php "); // get the content of an external file $ mail = new PHPMailer (); $ body = file_get_contents('contents.html '); $ body = eregi_replace (" [\] ", '', $ body); // Set the smtp parameter $ mail-> IsSMTP (); $ mail-> SMTPAuth = true; $ mail-> SMTPKeepAlive = true; $ mail-> SMTPSecure = "ssl"; $ mail-> Host = "smtp.gmail.com"; $ mail-> Port = 465; // enter your gmail account and Password $ mail-> Username = "yourname@gmail.com"; $ mail-> Password =" Password "; // Set the sender, it is best not to forge the address $ mail-> From =" yourname@gmail.com "; $ mail-> FromName =" Webmaster "; $ mail-> Subject = "This is the subject"; $ mail-> AltBody = $ body; $ mail-> WordWrap = 50; // set word wrap $ mail-> MsgHTML ($ body); // set the reply address $ mail-> AddReplyTo ("yourname@gmail.com", "Webmaster"); // add an attachment, the attachment and script are located in the same directory. // otherwise, enter the complete path $ mail-> AddAttachment ("attachment.jpg"); $ mail-> AddAttachment ("attachment.zip "); // Set the email address and name of the email recipient $ ma Il-> AddAddress ("toname@gmail.com", "FirstName LastName"); // send an email in HTML format $ mail-> IsHTML (true ); // Send an email using the Send method // process the email based on the sending result if (! $ Mail-> Send () {echo "Mailer Error:". $ mail-> ErrorInfo;} else {echo "Message has been sent ";}
2. use the 163 email sending script
You only need to change the SMTP configuration and account password. The SMTP configuration is as follows:
// Set smtp parameters // note that ssl protocol $ mail-> IsSMTP (); $ mail-> SMTPAuth = true; $ mail-> SMTPKeepAlive = true; $ mail-> Host = "smtp.163.com"; $ mail-> Port = 25;
If the test passes in the local wampserver environment, you must enable the php_openssl extension.
The above is all the content of this article. I hope you will like it.