


This 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!
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:
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.
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.
#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 = 'smtp.qq.com'; //设置使用ssl加密方式登录鉴权 $mail->SMTPSecure = 'ssl'; //设置ssl连接smtp服务器的远程服务器端口号,以前的默认是25,但是现在新的好像已经不可用了 可选465或587 $mail->Port = 465; //设置smtp的helo消息头 这个可有可无 内容任意 // $mail->Helo = 'Hello smtp.qq.com Server'; //设置发件人的主机域 可有可无 默认为localhost 内容任意,建议使用你的域名 $mail->Hostname = 'https://guanchao.site'; //设置发送的邮件的编码 可选GB2312 我喜欢utf-8 据说utf8在某些客户端收信下会乱码 $mail->CharSet = 'UTF-8'; //设置发件人姓名(昵称) 任意内容,显示在收件人邮件的发件人邮箱地址前的发件人姓名 $mail->FromName = 'LSGO实验室'; //smtp登录的账号 这里填入字符串格式的qq号即可 $mail->Username ='805795955@qq.com'; //smtp登录的密码 使用生成的授权码(就刚才叫你保存的最新的授权码) $mail->Password = '****************'; //设置发件人邮箱地址 这里填入上述提到的“发件人邮箱” $mail->From = '805795955@qq.com'; //邮件正文是否为html编码 注意此处是一个方法 不再是属性 true或false $mail->isHTML(true); //设置收件人邮箱地址 该方法有两个参数 第一个参数为收件人邮箱地址 第二参数为给该地址设置的昵称 不同的邮箱系统会自动进行处理变动 这里第二个参数的意义不大 $mail->addAddress($to,'时间里的博客在线通知'); //添加多个收件人 则多次调用方法即可 // $mail->addAddress('**********@qq.com','时间里的博客在线通知'); //添加该邮件的主题 $mail->Subject = $title; //添加邮件正文 上方将isHTML设置成了true,则可以是完整的html字符串 如:使用file_get_contents函数读取本地的html文件 $mail->Body = $content; //为该邮件添加附件 该方法也有两个参数 第一个参数为附件存放的目录(相对目录、或绝对目录均可) 第二参数为在邮件附件中该附件的名称 // $mail->addAttachment('./d.jpg','mm.jpg'); //同样该方法可以多次调用 上传多个附件 // $mail->addAttachment('./Jlib-1.1.0.js','Jlib.js'); $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('805795955@qq.com','时间里的博客在线通知','欢迎来到时间里的博客'); 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!

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

In PHP, use the clone keyword to create a copy of the object and customize the cloning behavior through the \_\_clone magic method. 1. Use the clone keyword to make a shallow copy, cloning the object's properties but not the object's properties. 2. The \_\_clone method can deeply copy nested objects to avoid shallow copying problems. 3. Pay attention to avoid circular references and performance problems in cloning, and optimize cloning operations to improve efficiency.

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

Key players in HTTP cache headers include Cache-Control, ETag, and Last-Modified. 1.Cache-Control is used to control caching policies. Example: Cache-Control:max-age=3600,public. 2. ETag verifies resource changes through unique identifiers, example: ETag: "686897696a7c876b7e". 3.Last-Modified indicates the resource's last modification time, example: Last-Modified:Wed,21Oct201507:28:00GMT.

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP is a server-side scripting language used for dynamic web development and server-side applications. 1.PHP is an interpreted language that does not require compilation and is suitable for rapid development. 2. PHP code is embedded in HTML, making it easy to develop web pages. 3. PHP processes server-side logic, generates HTML output, and supports user interaction and data processing. 4. PHP can interact with the database, process form submission, and execute server-side tasks.

PHP has shaped the network over the past few decades and will continue to play an important role in web development. 1) PHP originated in 1994 and has become the first choice for developers due to its ease of use and seamless integration with MySQL. 2) Its core functions include generating dynamic content and integrating with the database, allowing the website to be updated in real time and displayed in personalized manner. 3) The wide application and ecosystem of PHP have driven its long-term impact, but it also faces version updates and security challenges. 4) Performance improvements in recent years, such as the release of PHP7, enable it to compete with modern languages. 5) In the future, PHP needs to deal with new challenges such as containerization and microservices, but its flexibility and active community make it adaptable.

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.


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

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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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 latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.