hyperf-chat/app/Support/Mail.php

80 lines
2.9 KiB
PHP
Raw Normal View History

2020-12-19 18:06:29 +08:00
<?php
namespace App\Support;
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
/**
* Class Mail
2021-04-20 16:30:57 +08:00
*
2020-12-19 18:06:29 +08:00
* @package App\Support
*/
class Mail
{
/**
* 发送邮件验证码
*
2021-04-20 16:30:57 +08:00
* @param string $email 邮箱地址
2020-12-19 18:06:29 +08:00
* @param string $sms_code 验证码
2021-04-20 16:30:57 +08:00
* @param string $title 邮件标题
*
2020-12-19 18:06:29 +08:00
* @return bool
*/
2020-12-26 21:33:40 +08:00
public function sendEmailCode(string $email, string $sms_code, string $title)
2020-12-19 18:06:29 +08:00
{
$view = $this->view(config('view.engine'), 'emails.verify-code', [
2020-12-26 21:33:40 +08:00
'service_name' => "邮箱绑定",
2021-04-20 16:30:57 +08:00
'sms_code' => $sms_code,
'domain' => config('domain.web_url')
2020-12-19 18:06:29 +08:00
]);
try {
2020-12-26 21:33:40 +08:00
return $this->mail($email, $title, $view);
2020-12-19 18:06:29 +08:00
} catch (\Exception $e) {
return false;
}
}
/**
* @param string $address
* @param string $subject
* @param string $view
2021-04-20 16:30:57 +08:00
*
2020-12-19 18:06:29 +08:00
* @return bool
* @throws \PHPMailer\PHPMailer\Exception
*/
private function mail(string $address, string $subject, string $view): bool
{
2021-04-20 16:30:57 +08:00
$config = config('mail');
$mail = new PHPMailer(); //PHPMailer对象
$mail->CharSet = 'UTF-8'; //设定邮件编码默认ISO-8859-1如果发中文此项必须设置否则乱码
$mail->IsSMTP(); // 设定使用SMTP服务
$mail->SMTPDebug = 0; // 关闭SMTP调试功能
$mail->SMTPAuth = true; // 启用 SMTP 验证功能
$mail->SMTPSecure = 'ssl'; // 使用安全协议
$mail->Host = $config['host']; // SMTP 服务器
$mail->Port = $config['port']; // SMTP服务器的端口号
$mail->Username = $config['username']; // SMTP; // SMTP服务器用户名
$mail->Password = $config['password']; // SMTP服务器密码
$mail->SetFrom($config['from'], $config['name']); // 邮箱,昵称
2020-12-19 18:06:29 +08:00
$mail->Subject = $subject;
$mail->MsgHTML($view);
$mail->AddAddress($address); // 收件人
return $mail->Send();
}
/**
* @param string $engine
2021-04-20 16:30:57 +08:00
* @param $template
* @param array $params
*
2020-12-19 18:06:29 +08:00
* @return string
*/
private function view(string $engine, $template, $params = []): string
{
$config = config('view.config', []);
return container()->get($engine)->render($template, $params, $config);
}
}