search
HomeBackend DevelopmentPHP TutorialThis article will show you how to use phpmailer to implement email sending function in PHP.

How to use PHP to implement email sending function? The following article will introduce to you how to send emails using PHP using phpmailer and SMTP services. I hope it will be helpful to you!

This article will show you how to use phpmailer to implement email sending function in PHP.

Occasionally there will be messages and comments on the blog, and I will reply in time. But there is a question. After I replied, if the person who left me a message does not enter my blog again Check, he doesn't know, this is very unreasonable.

Check out other people’s blogs. Most replies are via email.

This is pretty good, let’s get one.

Basically two methods are introduced on Baidu.

The first is that PHP implements email sending through the SMTP server of qq mailbox or NetEase mailbox.

The second is to use phpmailer to send emails.

Note that the second method also requires your email to enable the SMTP service.

The final effect of how to open the SMTP service of the mailbox is as shown below:

This article will show you how to use phpmailer to implement email sending function in PHP.

During the opening process, the page will prompt you to call The SMTP authorization password is as shown in the figure below. This password must be remembered. If you do not remember it, you can generate it again. I have opened two SMTP services above, and the final authorization password shall prevail.

This article will show you how to use phpmailer to implement email sending function in PHP.

The first method has been tried, and the error is as follows:

Trying to smtp.qq.com:587 220 smtp.qq.com Esmtp QQ Mail Server Connected to relay host smtp.qq.com > 
HELO localhost 250 smtp.qq.com > AUTH LOGIN ODA1Nzk1OTU1QHFxLmNvbQ== 530 Must issue a STARTTLS command first. 
Error: Remote host returned "530 Must issue a STARTTLS command first." 
Error: Error occurred while sending HELO command. 
Error: Cannot send email to <1150366147@qq.com> Disconnected from remote host

I searched on Baidu and found no clear answer. If you have encountered such a problem, please leave a message below and we can discuss it.

I am using the second method here.

I won’t go into details about the specific advantages and disadvantages of Phpmail. If you want to know more, please go to Baidu.

The first step is to get phpmailer

PHPMailer project address: https://github.com/PHPMailer/PHPMailer; use git command to clone to Locally, or directly click "Download ZIP" in the lower right corner of the project page to get the complete PHPMailer code package, and then unzip it locally.

The second step is to enable server support

To use phpmailer, our server needs to enable sockets and openssl services.

This article will show you how to use phpmailer to implement email sending function in PHP.

#The third step is to upload phpmailer to our server.

I am using the thinkphp5 framework here, and I uploaded it to the extend directory in the root directory.

There is actually no need to mention this step in isolation. However, not all of the project files we downloaded from github are useful. We can only upload a few main files to the server.

The fourth step is to encode the public method of sending mail and its calling method

The public method of sending mail:

/*发送邮件方法
 *@param $to:接收者 $title:标题 $content:邮件内容
 *@return bool true:发送成功 false:发送失败
 */
function sendMail($to,$title,$content){
 
    //引入PHPMailer的核心文件 使用require_once包含避免出现PHPMailer类重复定义的警告
    require_once("phpmailer/class.phpmailer.php");
    require_once("phpmailer/class.smtp.php");
    //实例化PHPMailer核心类
    $mail = new PHPMailer();
 
    //是否启用smtp的debug进行调试 开发环境建议开启 生产环境注释掉即可 默认关闭debug调试模式
    $mail->SMTPDebug = 1;
 
    //使用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;
 
    //设置smtp的helo消息头 这个可有可无 内容任意
    // $mail->Helo = &#39;Hello smtp.qq.com Server&#39;;
 
    //设置发件人的主机域 可有可无 默认为localhost 内容任意,建议使用你的域名
    $mail->Hostname = &#39;https://guanchao.site&#39;;
 
    //设置发送的邮件的编码 可选GB2312 我喜欢utf-8 据说utf8在某些客户端收信下会乱码
    $mail->CharSet = &#39;UTF-8&#39;;
 
    //设置发件人姓名(昵称) 任意内容,显示在收件人邮件的发件人邮箱地址前的发件人姓名
    $mail->FromName = &#39;LSGO实验室&#39;;
 
    //smtp登录的账号 这里填入字符串格式的qq号即可
    $mail->Username =&#39;805795955@qq.com&#39;;
 
    //smtp登录的密码 使用生成的授权码(就刚才叫你保存的最新的授权码)
    $mail->Password = &#39;****************&#39;;
 
    //设置发件人邮箱地址 这里填入上述提到的“发件人邮箱”
    $mail->From = &#39;805795955@qq.com&#39;;
 
    //邮件正文是否为html编码 注意此处是一个方法 不再是属性 true或false
    $mail->isHTML(true);
 
    //设置收件人邮箱地址 该方法有两个参数 第一个参数为收件人邮箱地址 第二参数为给该地址设置的昵称 不同的邮箱系统会自动进行处理变动 这里第二个参数的意义不大
    $mail->addAddress($to,&#39;时间里的博客在线通知&#39;);
 
    //添加多个收件人 则多次调用方法即可
    // $mail->addAddress(&#39;**********@qq.com&#39;,&#39;时间里的博客在线通知&#39;);
 
    //添加该邮件的主题
    $mail->Subject = $title;
 
    //添加邮件正文 上方将isHTML设置成了true,则可以是完整的html字符串 如:使用file_get_contents函数读取本地的html文件
    $mail->Body = $content;
 
    //为该邮件添加附件 该方法也有两个参数 第一个参数为附件存放的目录(相对目录、或绝对目录均可) 第二参数为在邮件附件中该附件的名称
    // $mail->addAttachment(&#39;./d.jpg&#39;,&#39;mm.jpg&#39;);
    //同样该方法可以多次调用 上传多个附件
    // $mail->addAttachment(&#39;./Jlib-1.1.0.js&#39;,&#39;Jlib.js&#39;);
 
    $status = $mail->send();
 
    //简单的判断与提示信息
    if($status) {
        return true;
    }else{
        return false;
    }
}

Calling method :

I am just making a simple call here. Please decide what content you need based on your own needs.

public function sendEmail()
{
       $flag = sendMail(&#39;805795955@qq.com&#39;,&#39;时间里的博客在线通知&#39;,&#39;欢迎来到时间里的博客&#39;);
       if($flag){
              echo true;
       }else{
              echo false;
       }
}

The above is the entire implementation process of sending emails using phpmailer.

Original address: https://juejin.cn/post/7083661334214082574

Author: camellia

Recommended learning: "PHP Video Tutorial

The above is the detailed content of This article will show you how to use phpmailer to implement email sending function in PHP.. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

PHP Email Security: Best Practices for Sending EmailsPHP Email Security: Best Practices for Sending EmailsMay 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools