


Main functional features and simple usage instructions of PHPMailer_PHP Tutorial
Supports email s/mime encrypted digital signatures
Supports multiple email TOs, CCs, BCCs and REPLY-TOs
Can work on any server platform, so you don’t have to worry about the WIN platform being unable to send emails
Support text/HTML format emails
Can embed images
Support email clients that do not support HTML reading
Powerful debugging function for sending emails
Customize email headers
Redundant SMTP server support
Supports 8bit, base64, binary, and quoted-printable encoding
Text automatic line wrapping
Supports multiple attachment sending function
Supports SMTP server verification function
In Sendmail, qmail, Postfix, Gmail, Imail, Exchange and other platforms have been successfully tested
The download file provided includes detailed documentation and examples, so don’t worry about getting started!
PHPMailer is very small, simple, convenient and fast
Usage of PHPMailer (here is using gmail smtp to send emails as an example, of course, sendmail pop and other other methods are also supported):
First go to http://phpmailer.worxware.com/ to download the latest version of the package
After the download is completed, find the two classes class.phpmailer.php and class.smtp.php and put them in your own directory!
Then create a new php file and name it here: phpmail.php
The content of phpmail.php is as follows:
I directly write the email sending module as a function postmail(). You can call this function directly when using it. , the function content is:
Program code
function postmail($to,$subject = "",$body = ""){
//$to represents the recipient address $subject represents the email title $body represents the email body
//error_reporting(E_ALL);
error_reporting(E_STRICT);
date_default_timezone_set("Asia/Shanghai");//Set the time zone Dongba District
require_once('class.phpmailer.php');
include("class.smtp.php");
$mail = new PHPMailer(); //new a PHPMailer object
$body = eregi_replace("[]",'',$body) ; //Perform necessary filtering of email content
$mail->CharSet ="UTF-8";//Set the email encoding, the default is ISO-8859-1, if you send Chinese, this must be set, otherwise it will be garbled
$mail->IsSMTP(); // Set up the SMTP service
$mail->SMTPDebug = 1; // 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // Enable SMTP authentication function
$mail->SMTPSecure = "ssl"; 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's name');
$mail->AddReplyTo("Email reply address, such as admin@domain.com", "Name of the person who replied to the email");
$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 = $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, the email was sent successfully! ";
}
}
http://www.bkjia.com/PHPjc/825237.html

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In web applications, it is often necessary to send emails to multiple recipients at once. PHP is a very popular web development language, and PHPMailer is a common PHP class library for sending emails. PHPMailer provides a rich interface, making sending emails in PHP applications more convenient and easy to use. In this article, we will introduce the methods and steps on how to use PHPMailer to send emails to multiple recipients. To download PHPMailer, you first need to go to the official website (

PHP development practice: Use PHPMailer to send emails to users in the MySQL database Introduction: In the construction of the modern Internet, email is an important communication tool. Whether it is user registration, password reset, or order confirmation in e-commerce, sending emails is an essential function. This article will introduce how to use PHPMailer to send emails and save the email information to the user information table in the MySQL database. 1. Install the PHPMailer library PHPMailer is

How to send HTML mail with embedded images using PHP and PHPMAILER? HTML email is a richer and more personalized form of email that can insert pictures, links and styles into the email. Embedded images refer to sending images directly as part of the email in the HTML email instead of sending them as attachments. In PHP, we can use PHPMAILER to send HTML emails with embedded images. PHPMAILER is a powerful PHP email sending library

Mastering PHP and PHPMAILER: How to implement the automatic reply function for email sending? In modern society, email has become one of the important ways for people to communicate every day. Many websites or companies need to communicate with users through emails, and automatic reply to emails has become very important. This article will introduce how to use PHP and the PHPMailer library to implement the automatic reply function for email sending. Step 1: Get the user’s email information First, we need to get the user’s email information. On a website or application, use

PHP and PHPMAILER: How to implement anti-spam function for email sending? Introduction: In the Internet age, email has become an indispensable part of our daily life and work. However, with the popularity and use of email, the problem of spam has become increasingly serious, causing a lot of trouble to users. In order to solve this problem, this article will introduce how to use PHP and PHPMailer library to implement the anti-spam function of email sending. 1. Understand spam. Spam refers to those unsolicited

PHP methods and precautions for sending attachment emails using the PHPMailer library. Email has become a very important way of communication in modern life. In many development projects, we need to use code to automatically send emails. At this time, the PHPMailer library is our best choice. PHPMailer is a library dedicated to sending emails in PHP. It can easily send emails, including HTML-formatted emails and attachments. This article will focus on how to send emails with attachments in the PHPMailer library.

How to send HTML formatted emails using PHP and PHPMailer? With the development of the Internet, email has become an important tool for people's daily communication. When developing websites and applications, we often need to use PHP and PHPMailer to send emails. This article will introduce you to how to use PHP and PHPMailer to send emails in HTML format, and provide corresponding code examples. Step One: Preparation Before you begin, you need to make sure you have PHP and PHPmail installed

How to send HTML emails with images using PHP and PHPMailer? Email plays an important role in modern communication, but sending HTML emails with images may confuse some PHP developers. In this article, we will introduce how to use PHP and PHPMailer to send HTML emails with images. We'll provide code examples to help you better understand how to achieve this. First, we need to make sure that the PHPMailer library is installed in our project
