2
0

fix: 验证码邮件标题

This commit is contained in:
caiyuchao
2025-06-24 16:02:03 +08:00
parent 60715a123c
commit 34bbdc7586
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ public class SysEmailController extends BaseController {
String htmlStr = templateEngine.process("mail", context);
String subject = mailProperties.getSubject();
if (StrUtil.isBlank(subject)) {
subject = "Your WANFI Verification Code";
subject = "Your Verification Code";
}
MailUtils.sendHtml(email, subject, htmlStr);
} catch (Exception e) {