Detailed introduction to Phpmailer and how to use _php tutorials

Source: Internet
Author: User
Tags word wrap
First, you need to download the Phpmailer file package Phpmailer. http://phpmailer.sourceforge.net/
Second, confirm that your server system already supports socket, through phpinfo (), check whether sockets is supported (socket is part of PHP extension), if it appears as "enabled", it is supported.
Third, unzip the file into your Web server directory and call the class.
First contains the class.phpmailer.php, then creates the object, sets the parameters, and invokes the member function.

Example 1, making a function convenient to call
Copy CodeThe code is as follows:
Require ("phpmailer/class.phpmailer.php");
function Smtp_mail ($sendto _email, $subject, $body, $extra _hdrs, $user _name) {
$mail = new Phpmailer ();
$mail->issmtp (); Send via SMTP
$mail->host = "200.162.244.66"; SMTP servers
$mail->smtpauth = true; Turn on SMTP authentication
$mail->username = "Yourmail"; SMTP username Note: Normal mail authentication does not need to add @ domain name
$mail->password = "MailPassword"; SMTP Password
$mail->from = "yourmail@yourdomain.com"; Sender Mailbox
$mail->fromname = "Administrator"; Sender

$mail->charset = "GB2312"; Specify the character set here!
$mail->encoding = "base64";
$mail->addaddress ($sendto _email, "username"); Recipient's mailbox and name
$mail->addreplyto ("yourmail@yourdomain.com", "yourdomain.com");
$mail->wordwrap = 50; Set word wrap word wrapping
$mail->addattachment ("/var/tmp/file.tar.gz"); Attachment Accessories
$mail->addattachment ("/tmp/image.jpg", "new.jpg");
$mail->ishtml (TRUE); Send As HTML
Message subject
$mail->subject = $subject;
Message content
$mail->body = "





I love PHP.


";
$mail->altbody = "text/html";
if (! $mail->send ())
{
echo "Mail sent incorrectly

";
echo "Message error message:". $mail->errorinfo;
Exit
}
else {
echo "$user _name Mail sent successfully!
";
}
}
Parameter description (Sent to, message subject, message content, additional information, user name)
Smtp_mail ("yourmail@yourdomain.com", "Welcome to use phpmailer! "," NULL "," yourdomain.com "," username ");
?>

Attention:

1. The character set of the message, $mail->charset = "GB2312"; Specify the character set here! Here I only specify as GB2312 because so Outlook can display the subject of the message normally, I tried to set it to utf-8 but the garbled characters appear under Outlook.
2. If you are sending an HTML-formatted message, remember to also specify
3. If you want to use it for mass mailing, remember to modify the include file functions, such as:
Require ("phpmailer/class.phpmailer.php");
Switch
Require_once ("phpmailer/class.phpmailer.php");
Otherwise, a redefinition of the class is generated.

Personally think to use Phpmailer, first, need to have a mail server, PHP mail function is not specified, should be using the PHP settings of SMTP.

In this case, you need to specify the manager and password of the mail server.

Phpmailer is also a powerful mail-enabled class

main features of Phpmailer:

Digital signatures that support message S/MIME encryption
Support mail multiple TOs, CCs, BCCs and Reply-tos
Can work on any server platform, so don't worry about the win platform can't send mail the problem
Supports text/html format messages
Image images can be embedded
Support for HTML reading is not supported for mail clients
Powerful debug function for sending mail
Custom Mail Header
Redundant SMTP server support
Supports 8bit, base64, binary, and quoted-printable codes
Word Wrap
Support multi-attachment sending function
Support for SMTP server Authentication feature
Tested successfully on SendMail, QMail, Postfix, Gmail, Imail, and Exchange platforms
The download file provided includes a detailed description of the documentation and sample instructions, so don't worry about the difficulty of getting started!
Phpmailer is very small, simple, convenient and fast
The above information from Jiucool translation from the Phpmailer official website, reproduced please specify!

The use of Phpmailer (here to use Gmail SMTP to send mail as an example, but also support SendMail pop and other ways):
First download the latest version of the package to http://phpmailer.worxware.com/
After the download is complete, find the class.phpmailer.php, class.smtp.php two classes put in your own directory!
Then create a new PHP file named here: phpmail_jiucool.php
phpmail_jiucool.php content is as follows:
I directly write the e-mail module as a function postmail_jiucool_com (), you can call the function directly when you use, the function content is:

Copy CodeThe code is as follows:
function postmail_jiucool_com ($to, $subject = "", $body = "") {
Author:jiucool website:http://www.jb51.net
$to represents the recipient address $subject represents the message header $body represents the message body
Error_reporting (E_all);
Error_reporting (e_strict);
Date_default_timezone_set ("Asia/shanghai");//Set time zone East eight zone
Require_once (' class.phpmailer.php ');
Include ("class.smtp.php");
$mail = new Phpmailer (); New a Phpmailer object.
$body = eregi_replace ("[\]" ",", $body); Filtering the content of the message as necessary
$mail->charset = "UTF-8";//Set the message encoding, default iso-8859-1, if the Chinese language must be set, otherwise garbled
$mail->issmtp (); Setting up using the SMTP service
$mail->smtpdebug = 1; Enabling the SMTP debugging feature
1 = errors and messages
2 = messages Only
$mail->smtpauth = true; Enable the SMTP authentication feature
$mail->smtpsecure = "SSL"; Security protocols
$mail->host = "smtp.googlemail.com"; SMTP Server
$mail->port = 465; Port number of the SMTP server
$mail->username = "SMTP Server user name"; SMTP Server user name
$mail->password = "SMTP server password"; SMTP server password
$mail->setfrom (' sender's address, such as admin#jiucool.com #换成 @ ', ' sender name ');
$mail->addreplyto ("Mail reply address, such as admin#jiucool.com #换成 @", "Mail reply person's name");
$mail->subject = $subject;
$mail->altbody = "To view the message, please use an HTML compatible email viewer! -From www.jiucool.com "; Optional, comment out and test
$mail->msghtml ($body);
$address = $to;
$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, Mail sent successfully! ";
}
}

http://www.bkjia.com/PHPjc/326520.html www.bkjia.com true http://www.bkjia.com/PHPjc/326520.html techarticle first, you need to download the Phpmailer file package Phpmailer. http://phpmailer.sourceforge.net/Second, confirm that your server system already supports sockets, via Phpinfo (); Check to see if sockets (...) is supported .

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