search
HomeBackend DevelopmentPHP TutorialExample analysis of PHPMailer sending emails in PHP_php example
Example analysis of PHPMailer sending emails in PHP_php exampleDec 15, 2017 am 09:43 AM
phpphpmailerCase Analysis

This article uses QQ mailbox as an example to explain the usage methods and techniques of PHPMaIiler. The following uses QQ mailbox as an example to introduce PHPMaIiler according to these four aspects. Use, follow the editor to learnPHPMaIilerSend Email

Introduction to PHPMailer Step 1: Enable QQ mailbox to send mail Step 2: Enable PHP to use QQ mailbox to send mail Step 3: Write Send email code ThinkPHP uses PHPMailer to send emails

Introduction to PHPMailer

Can run on any platform; supports SMTP authentication; specifies multiple recipients when sending emails , Cc address, Bcc address and reply address; Note: Adding Cc and Bcc is only supported by SMTP mode under the win platform; supports multiple email encodings including: 8bit, base64, binary and quoted-printable; customizable email header information , which is similar to sending header information through the header function in PHP. It supports making the email body into HTMl content, then you can insert pictures into the email body; tested and compatible SMTP servers include: Sendmail, qmail, Postfix, Imail, Exchange, etc.

Step 1: Enable QQ mailbox to send mail

Our mailbox can originally send mail, but we need to realize sending it on our website Email, then we need to set up our QQ mailbox, because our website now exists as a third-party client, so we need to use an SMTP server to send it. It is recommended to turn on the first two items here. Got it!

Enter QQ mailbox->Click settings->Click account

##When you click to open, it will prompt:

After you complete the above steps, you will get an authorization code. You can copy it first and we will use it later (if you enable both items, you will get two authorization codes. Be sure to Newest!).

Step 2: Enable PHP to use QQ mailbox to send mail

PHPMailer requires PHP's socket extension support, and PHPMailer links to the qq domain name mailbox It requires SSL encryption and PHP openssl extension support. You can use phpinfo to check whether the extension is enabled.

If it is not enabled, go to the PHP installation directory and find php.ini to enable two extensions.

Step 3: Write the code to send the email

index.html code is as follows:


<!doctype html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Document</title>
</head>
<body>
<form action="./index.php" method="post" >
 邮箱:<input type="text" id="mail" name="mail"/>
 标题:<input type="text" id="title" name="title"/>
 内容<input type="text" id="content" name="content"/>
 <input type="submit" value="发送"/>
</form>
</body>
</html>



Encapsulate a public method (written in the functions.php file):


/**
 *发送邮件方法
 *@param $to:接收者 $title:标题 $content:邮件内容
 *@return bool true:发送成功 false:发送失败
 */
function sendMail($to,$title,$content){
 require_once("phpmailer/class.phpmailer.php"); 
 require_once("phpmailer/class.smtp.php");
 //实例化PHPMailer核心类
 $mail = new PHPMailer();
 //使用smtp鉴权方式发送邮件
 $mail->isSMTP();
 //smtp需要鉴权 这个必须是true
 $mail->SMTPAuth=true;
 //链接qq域名邮箱的服务器地址
 $mail->Host = &#39;smtp.qq.com&#39;;
 //设置使用ssl加密方式登录鉴权
 $mail->SMTPSecure = &#39;ssl&#39;;
 //设置ssl连接smtp服务器的远程服务器端口号,以前的默认是25,但是现在新的好像已经不可用了 可选465或587
 $mail->Port = 465;
 //设置发件人的主机域 可有可无 默认为localhost 内容任意,建议使用你的域名
 $mail->Hostname = &#39;http://www.lsgogroup.com&#39;;
 //设置发送的邮件的编码 可选GB2312 我喜欢utf-8 据说utf8在某些客户端收信下会乱码
 $mail->CharSet = &#39;UTF-8&#39;;
 //设置发件人姓名(昵称) 任意内容,显示在收件人邮件的发件人邮箱地址前的发件人姓名
 $mail->FromName = &#39;发件人姓名(昵称)&#39;;
 //smtp登录的账号 这里填入字符串格式的qq号即可
 $mail->Username =&#39;12345678@qq.com&#39;;
 //smtp登录的密码 使用生成的授权码(就刚才保存的最新的授权码)
 $mail->Password = &#39;最新的授权码&#39;;
 //设置发件人邮箱地址 这里填入上述提到的“发件人邮箱”
 $mail->From = &#39;12345678@qq.com&#39;;
 //邮件正文是否为html编码 注意此处是一个方法 不再是属性 true或false
 $mail->isHTML(true); 
 //设置收件人邮箱地址 该方法有两个参数 第一个参数为收件人邮箱地址 第二参数为给该地址设置的昵称 不同的邮箱系统会自动进行处理变动 这里第二个参数的意义不大
 $mail->addAddress($to,&#39;尊敬的客户&#39;);
 //添加多个收件人 则多次调用方法即可
 // $mail->addAddress(&#39;xxx@163.com&#39;,&#39;尊敬的客户&#39;);
 //添加该邮件的主题
 $mail->Subject = $title;
 //添加邮件正文 上方将isHTML设置成了true,则可以是完整的html字符串
 $mail->Body = $content;
 $status = $mail->send();
 //判断与提示信息
 if($status) {
  return true;
 }else{
  return false;
 }
}



##index.

php code

is as follows:

<?php
require_once("./functions.php");
$to=$_POST[&#39;mail&#39;];
$title=$_POST[&#39;title&#39;];
$content=$_POST[&#39;content&#39;];
$flag = sendMail($to,$title,$content);
if($flag){
 echo "发送邮件成功!";
}else{
 echo "发送邮件失败!";
}
?>



If you are using QQ corporate mailbox, then the server address linking the qq domain name mailbox and the password for smtp login are different. :

//链接qq域名邮箱的服务器地址
$mail->Host = &#39;smtp.exmail.qq.com&#39;;
//smtp登录的密码 (QQ企业邮箱的登录密码)
$mail->Password = &#39;登录密码&#39;;



ThinkPHP uses PHPMailer to send emails

PHPMailer Unzip to ThinkPHPLibraryVendor

Create new function.php in the Common folder

/**
 * 邮件发送函数
 * @param $to:接收者 $title:标题 $content:邮件内容
 * @return bool true:发送成功 false:发送失败
 */
function sendMail($to, $title, $content) {
 Vendor(&#39;PHPMailer.PHPMailerAutoload&#39;);
 Vendor(&#39;PHPMailer.class.smtp&#39;);
 $mail = new PHPMailer(); //实例化
 $mail->IsSMTP(); // 启用SMTP
 $mail->Host=C(&#39;MAIL_HOST&#39;); //smtp服务器的名称
 $mail->SMTPSecure = C(&#39;MAIL_SECURE&#39;);
 $mail->Port = C(&#39;MAIL_PORT&#39;);
 $mail->SMTPAuth = C(&#39;MAIL_SMTPAUTH&#39;); //启用smtp认证
 $mail->Username = C(&#39;MAIL_USERNAME&#39;); //你的邮箱名
 $mail->Password = C(&#39;MAIL_PASSWORD&#39;) ; //邮箱密码
 $mail->From = C(&#39;MAIL_FROM&#39;); //发件人地址(也就是你的邮箱地址)
 $mail->FromName = C(&#39;MAIL_FROMNAME&#39;); //发件人姓名
 $mail->AddAddress($to,"尊敬的客户");
 $mail->WordWrap = 50; //设置每行字符长度
 $mail->IsHTML(C(&#39;MAIL_ISHTML&#39;)); // 是否HTML格式邮件
 $mail->CharSet=C(&#39;MAIL_CHARSET&#39;); //设置邮件编码
 $mail->Subject =$title; //邮件主题
 $mail->Body = $content; //邮件内容
 $mail->AltBody = "您好"; //邮件正文不支持HTML的备用显示
 return($mail->Send());
}


Add

configuration File

config.php

// 配置邮件发送服务器
 &#39;MAIL_HOST&#39; =>&#39;smtp.qq.com&#39;,//smtp服务器的名称
 &#39;MAIL_SMTPAUTH&#39; =>true, //启用smtp认证
 &#39;MAIL_USERNAME&#39; =>&#39;12345678@qq.com&#39;,//你的邮箱名
 &#39;MAIL_FROM&#39; =>&#39;12345678@qq.com&#39;,//发件人地址
 &#39;MAIL_FROMNAME&#39;=>&#39;12345678@qq.com&#39;,//发件人姓名
 &#39;MAIL_PASSWORD&#39; =>&#39;xxxxxx,//邮箱密码
 &#39;MAIL_CHARSET&#39; =>&#39;utf-8&#39;,//设置邮件编码
 &#39;MAIL_ISHTML&#39; =>TRUE, // 是否HTML格式邮件
 &#39;MAIL_PORT&#39; =>&#39;465&#39;,//设置ssl连接smtp服务器的远程服务器端口号
 &#39;MAIL_SECURE&#39; =>&#39;ssl&#39;,//设置使用ssl加密方式登录鉴权


Finally, use

PHPMailer to send the email

<!doctype html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Document</title>
</head>
<body>
<form action="/index.php/Admin/test/add" method="post" enctype="multipart/form-data">
 邮箱:<input type="text" id="mail" name="mail"/>
 标题:<input type="text" id="title" name="title"/>
 内容<input type="text" id="content" name="content"/>
 <input type="submit" value="发送"/>
</form>
</body>
</html>

public function add(){
  if(sendMail($_POST[&#39;mail&#39;],$_POST[&#39;title&#39;],$_POST[&#39;content&#39;]))
   echo "发送成功";
  else
   echo "发送失败";
 }

The above is all the content of sending emails by PHPMailer in PHP. I hope it can be helpful to everyone! !

Related recommendations:

Analysis of how to send emails using PHPMailer in PHP

PHPMailer method to send email with attachments in php_PHP tutorial

PHPMailer method to send email with attachments in php

The above is the detailed content of Example analysis of PHPMailer sending emails in PHP_php example. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP使用PHPMailer发送多人邮件的方法和步骤PHP使用PHPMailer发送多人邮件的方法和步骤May 22, 2023 pm 06:10 PM

在Web应用程序中,往往需要将邮件一次性发送给多个收件人。PHP是一种很流行的Web开发语言,而PHPMailer是一种常见的发送邮件的PHP类库。PHPMailer提供了丰富的接口,使得在PHP应用程序中发送邮件变得更加方便和易于使用。在本篇文章中,我们将介绍如何使用PHPMailer向多个收件人发送邮件的方法和步骤。下载PHPMailer首先需要在官网(

掌握PHP和PHPMAILER:如何实现邮件发送的自动回复功能?掌握PHP和PHPMAILER:如何实现邮件发送的自动回复功能?Jul 22, 2023 am 11:57 AM

掌握PHP和PHPMAILER:如何实现邮件发送的自动回复功能?在现代社会中,电子邮件成为了人们日常沟通的重要方式之一。许多网站或者企业都需要通过邮件与用户进行沟通和交流,并且自动回复邮件变得非常重要。本文将介绍如何使用PHP和PHPMailer库实现邮件发送的自动回复功能。第一步:获取用户的邮件信息首先,我们需要获取用户的邮件信息。在网站或者应用程序中,用

如何使用PHP和PHPMAILER发送带有内嵌图片的HTML邮件?如何使用PHP和PHPMAILER发送带有内嵌图片的HTML邮件?Jul 22, 2023 am 11:29 AM

如何使用PHP和PHPMAILER发送带有内嵌图片的HTML邮件?HTML邮件是一种更加丰富和个性化的邮件形式,可以在邮件中插入图片、链接和样式。而内嵌图片是指在HTML邮件中直接将图片作为邮件的一部分发送,而不是通过附件方式发送。在PHP中,我们可以借助PHPMAILER来发送带有内嵌图片的HTML邮件。PHPMAILER是一个功能强大的PHP邮件发送类库

PHP和PHPMAILER:如何实现邮件发送的防垃圾邮件功能?PHP和PHPMAILER:如何实现邮件发送的防垃圾邮件功能?Jul 22, 2023 am 11:46 AM

PHP和PHPMAILER:如何实现邮件发送的防垃圾邮件功能?引言:在互联网时代,电子邮件已经成为了我们日常生活和工作中不可或缺的一部分。然而,随着电子邮件的普及和使用,垃圾邮件问题日益严重,给用户带来了诸多困扰。为了解决这个问题,本文将介绍如何利用PHP和PHPMailer库实现邮件发送的防垃圾邮件功能。一、了解垃圾邮件垃圾邮件(Spam),指的是那些未经

PHP使用PHPMailer库发送附件邮件的方法和注意事项PHP使用PHPMailer库发送附件邮件的方法和注意事项May 21, 2023 pm 06:12 PM

PHP使用PHPMailer库发送附件邮件的方法和注意事项邮件在现代生活中已经成为了非常重要的一种通信方式。在很多开发项目中,我们需要使用代码自动发送邮件,这时候PHPMailer库就是我们的不二之选。PHPMailer是一个专门用于PHP发送邮件的库。它可以方便地发送邮件,包括HTML格式的邮件和附件。本文将着重介绍PHPMailer库中如何发送带附件的邮

如何在CakePHP中使用PHPMailer?如何在CakePHP中使用PHPMailer?Jun 04, 2023 pm 01:10 PM

CakePHP是一个基于MVC模式的PHP开源框架,旨在为开发者提供高效、可扩展、易于维护的Web应用程序开发环境。其中,邮件功能一直是Web应用程序的重要组成部分之一。为了方便开发者使用邮件功能,在CakePHP中已经封装了PHPMailer类库。PHPMailer是一款常用的邮件发送类库,支持发送HTML邮件、附件、抄送、邮件队列和SMTP验证等功能。本

如何使用PHP和PHPMAILER发送HTML格式的邮件?如何使用PHP和PHPMAILER发送HTML格式的邮件?Jul 22, 2023 am 10:14 AM

如何使用PHP和PHPMailer发送HTML格式的邮件?随着互联网的发展,电子邮件已经成为人们日常沟通的重要工具。在开发网站和应用程序时,我们常常需要使用PHP和PHPMailer来发送邮件。本文将为您介绍如何使用PHP和PHPMailer发送HTML格式的邮件,并提供相应的代码示例。第一步:准备工作在开始之前,您需要确保已经安装了PHP和PHPMaile

如何使用PHP和PHPMAILER发送带有图片的HTML邮件?如何使用PHP和PHPMAILER发送带有图片的HTML邮件?Jul 21, 2023 am 09:21 AM

如何使用PHP和PHPMailer发送带有图片的HTML邮件?邮件在现代通信中扮演着重要的角色,但是发送带有图片的HTML邮件可能会让一些PHP开发者感到困惑。在本文中,我们将介绍如何使用PHP和PHPMailer来发送带有图片的HTML邮件。我们将提供代码示例来帮助您更好地理解如何实现这一目标。首先,我们需要确保PHPMailer库已经安装在我们的项目中

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)