PHP uses phpmailer to send mails and phpmailer to send mails. PHP uses phpmailer to send mails. phpmailer is a server that does not send mails locally. it is a good choice to send mails with a ready-made SMTP server. the tool used here is that PHP uses phpmailer to send mails, phpmailer sends an email
If there is no sending email on the local server, it is a good choice to use the existing SMTP server to send mail. the tool used here is phpmailer (Version 5.2.0), and the SMTP server selects 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.
The producer does not have a server that sends emails locally. it is a good choice to send emails using the ready-made SMTP server. the tool used here is...