🚑修复部分环境邮件乱码

This commit is contained in:
初涧 2022-02-27 20:44:45 +08:00
parent d39f6525e9
commit 87ff1ef5ac
2 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@
// 程序版本
define("VERSION", "1.2.1");
define("VERSION", "1.2.2");
// 版本号
define("RELRAASE_TIME", "20220226");
define("RELRAASE_TIME", "20220227");
// 本地存储根目录
define("FOLDER", "LightPicture/");
// TOKEN KEY

View File

@ -34,7 +34,7 @@ class EmailClass
$data = SystemModel::where('type', 'email')->column('value', 'key');
$email_template = SystemModel::where('type','email_template')->value('value');
$mail = new PHPMailer(); //实例化PHPMailer对象
// $mail->CharSet = 'UTF-8'; //设定邮件编码默认ISO-8859-1如果发中文此项必须设置否则乱码
$mail->CharSet = 'UTF-8'; //设定邮件编码默认ISO-8859-1如果发中文此项必须设置否则乱码
$mail->IsSMTP(); // 设定使用SMTP服务
$mail->SMTPDebug = 0; // SMTP调试功能 0=关闭 1 = 错误和消息 2 = 消息
$mail->SMTPAuth = true; // 启用 SMTP 验证功能