In the previous article "PHP Implementation of Sending Emails (3)", we gave you a brief introduction to the method library through PHPMailer To achieve the functional effect of sending emails. Next, we will continue to explain how to implement the specific function of sending emails through PHPMailer based on the content of the previous article.
email.php code is as follows:
<?php /*发送邮件方法 *@param $to:接收者 $title:标题 $content:邮件内容 *@return bool true:发送成功 false:发送失败 */ function sendMail($to,$title,$content) { // 这个PHPMailer 就是之前从 Github上下载下来的那个项目 require './PHPMailer/PHPMailerAutoload.php'; $mail = new PHPMailer; //使用smtp鉴权方式发送邮件 $mail->isSMTP(); //smtp需要鉴权 这个必须是true $mail->SMTPAuth = true; // qq 邮箱的 smtp服务器地址,这里当然也可以写其他的 smtp服务器地址 $mail->Host = 'smtp.qq.com'; //smtp登录的账号 这里填入字符串格式的qq号即可 $mail->Username = '244103592@qq.com'; // 这个就是之前得到的授权码,一共16位 $mail->Password = 'hlclkdigsqqdbged'; $mail->setFrom('244103592@qq.com', 'send_user_name'); // $to 为收件人的邮箱地址,如果想一次性发送向多个邮箱地址,则只需要将下面这个方法多次调用即可 $mail->addAddress($to); // 该邮件的主题 $mail->Subject = $title; // 该邮件的正文内容 $mail->Body = $content; // 使用 send() 方法发送邮件 if(!$mail->send()) { return '发送失败: ' . $mail->ErrorInfo; } else { return "发送成功"; } } // 调用发送方法,并在页面上输出发送邮件的状态 var_dump(sendMail('2286445505@qq.com','会议主题','今天下午开会'));
PHPMailer method library download address: http://www.php.cn/ xiazai/learn/5627
In the above codesendMail method, after introducing PHPMailerAutoload.php and instantiating PHPMailer, Related function methods can be called.
$mail->isSMTP() means using SMTP service;
$mail->SMTPAuth sets whether to use authentication ( Must be true);
$mail->HostSet the sender’s SMTP server address;
##$mail-> ;UsernameSet the sender's qq mailbox username;
$mail->Password Set the sender's mailbox password. Note that when using qq mailbox, fill in the "authorization password" "Instead of the email login password! (For the method of obtaining the qq authorization code, please refer to the article "PHP Implementation of Sending Mail (1)")
$mail->setFrom() is used to set the sender Information, such as the sender in the email format description, will be displayed here as send_user_name (xxxx@qq.com), and send_user_name is displayed as the name.
$mail->addAddress() Used to set the recipient’s email address.
$mail->Subject Set the email title;
$mail->Body Set the email body.
The above is the detailed content of PHP implements sending emails (4). For more information, please follow other related articles on the PHP Chinese website!

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

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

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version
Visual web development tools

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.

SublimeText3 English version
Recommended: Win version, supports code prompts!

WebStorm Mac version
Useful JavaScript development tools
