在项目的开发中 用户修改密码,需要发送验证码到用户邮箱,
下载类库:
使用composer,项目目录下运行
composer require phpmailer/phpmailer
common.php
/**
* 系统邮件发送函数
* @param string $tomail 接收邮件者邮箱
* @param string $name 接收邮件者名称
* @param string $subject 邮件主题
* @param string $body 邮件内容
* @param string $attachment 附件列表
* @return boolean
*/
function send_mail($tomail, $name, $subject = '', $body = '', $attachment = null) {
$mail = new PHPMailer\PHPMailer\PHPMailer(); //实例化PHPMailer对象
$mail->CharSet = 'UTF-8'; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码
$mail->IsSMTP(); // 设定使用SMTP服务
$mail->SMTPDebug = 0; // SMTP调试功能 0=关闭 1 = 错误和消息 2 = 消息
$mail->SMTPAuth = true; // 启用 SMTP 验证功能
$mail->SMTPSecure = 'ssl'; // 使用安全协议
$mail->Host = "smtp.qq.com"; // SMTP 服务器
$mail->Port = 465; // SMTP服务器的端口号
$mail->Username = "[email protected]"; // SMTP服务器用户名
$mail->Password = "xxxxxx"; // SMTP服务器密码
$mail->SetFrom('[email protected]', '发送人的名称');
$replyEmail = ''; //留空则为发件人EMAIL
$replyName = ''; //回复名称(留空则为发件人名称)
$mail->AddReplyTo($replyEmail, $replyName);
$mail->Subject = $subject;
$mail->MsgHTML($body);
$mail->AddAddress($tomail, $name);
if (is_array($attachment)) { // 添加附件
foreach ($attachment as $file) {
is_file($file) && $mail->AddAttachment($file);
}
}
return $mail->Send();
}
控制器
public function email(){
//收件人的邮箱
$toemail='[email protected]';
//收件人的名称
$name='xxxxxxx';
$subject='QQ邮件发送测试';
$code = mt_rand(10000, 99999);
session("code",$code);
$content='你得验证码为'.$code;
dump(send_mail($toemail,$name,$subject,$content));
}
验证是否正确 根据输入验证码的去判断取出session的 code的进行比较
参考地址:https://www.kancloud.cn/he_he/thinkphp5
如整合期间有遇到什么问题 可以加群 858507220 一起讨论哦。