2
0

fix: 邮件标题

This commit is contained in:
caiyuchao
2025-06-24 18:20:50 +08:00
parent 2874f33917
commit eee4d94be6
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ import java.util.List;
*/
@RestController
@RequestMapping("/client")
@Tag(name = "u用户平台-终端设备接口")
@Tag(name = "用户平台-终端设备接口")
public class UClientController extends BaseController {
@Autowired

View File

@@ -59,7 +59,7 @@ public class UEmailController 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) {