PHPMailer features and simple instructions for use. Supports smime-encrypted digital signatures for emails. supports multiple email-related TOs, CCs, and BCCsandREPLY-TOs on any server platform, therefore, you do not need to worry about the failure of the WIN platform to send emails. support email s/mime-encrypted digital signatures.
Supports email to multiple TOs, CCs, BCCs and REPLY-TOs
Can work on any server platform, so you don't have to worry about the problem that Windows cannot send emails.
Supports text/HTML emails
Image embedding
The email client does not support HTML reading.
Powerful debugging for sending emails
Custom email header
Support for redundant SMTP servers
Supports 8-bit, base64, binary, and quoted-printable encoding.
Text wrap
Supports sending multiple attachments
Support for SMTP server verification
Tests on Sendmail, qmail, Postfix, Gmail, Imail, and Exchange platforms are successful.
The downloaded files include detailed instructions and examples, so you don't have to worry about getting started!
PHPMailer is very small, simple, convenient, and fast
PHPMailer usage (here we use gmail smtp to send emails as an example. of course, other methods such as sendmail pop are also supported ):
First download the latest package from http://phpmailer.worxware.com/
After the download is complete, find the class. phpmailer. php and class. smtp. php classes in your own directory!
Create a new php file named phpmail. php.
The content of phpmail. php is as follows:
I directly write the Mail sending module as a function postmail (). you can directly call this function when using it. the Function content is:
Program code
The code is as follows:
Function postmail ($ to, $ subject = "", $ body = ""){
// $ To indicates the recipient address $ subject indicates the Mail Title $ body indicates the mail body
// Error_reporting (E_ALL );
Error_reporting (E_STRICT );
Date_default_timezone_set ("Asia/Shanghai"); // Set the time zone UTC + 8.
Require_once ('class. phpmailer. php ');
Include ("class. smtp. php ");
$ Mail = new PHPMailer (); // A new PHPMailer object is displayed.
$ Body = eregi_replace ("[\]", '', $ body); // filter the email content.
$ Mail-> CharSet = "UTF-8"; // Set the mail encoding, the default ISO-8859-1, this must be set if you send Chinese, otherwise garbled
$ Mail-> IsSMTP (); // you can specify the SMTP service.
$ Mail-> SMTPDebug = 1; // enable the SMTP debugging function
// 1 = errors and messages
// 2 = messages only
$ Mail-> SMTPAuth = true; // enable SMTP verification
$ Mail-> SMTPSecure = "ssl"; // security protocol
$ Mail-> Host = "smtp.googlemail.com"; // SMTP server
$ Mail-> Port = 465; // SMTP server Port number
$ Mail-> Username = "SMTP server Username"; // SMTP server Username
$ Mail-> Password = "SMTP server Password"; // SMTP server Password
$ Mail-> SetFrom ('sender address, such as admin@domain.com ', 'sender name ');
$ Mail-> AddReplyTo ("email reply address, such as admin@domain.com", "email reply person name ");
$ Mail-> Subject = $ subject;
$ Mail-> AltBody = "To view the message, please use an HTML compatible email viewer! "; // Optional, comment out and test
$ Mail-> MsgHTML ($ body );
$ Address = $;
$ Mail-> AddAddress ($ address, "recipient name ");
// $ Mail-> AddAttachment ("images/phpmailer.gif"); // attachment
// $ Mail-> AddAttachment ("images/phpmailer_mini.gif"); // attachment
If (! $ Mail-> Send ()){
Echo "Mailer Error:". $ mail-> ErrorInfo;
} Else {
Echo "Message sent! Congratulations, the email is sent successfully! ";
}
}
S/mime-encrypted digital signatures support multiple email TOs, CCs, BCCs and REPLY-TOs that can work on any server platform, so don't worry about the failure of the WIN platform to send emails...