BUGFIX:邮件发送失败

This commit is contained in:
2025-12-23 14:05:20 +08:00
parent 4fa70a1c90
commit e74eab1070
2 changed files with 10 additions and 2 deletions

View File

@@ -1024,7 +1024,7 @@ public class SendEmailUtil {
log.info("邮件发送结果res###{}", SendEmailResponse.toJsonString(resp));
} catch (TencentCloudSDKException e) {
log.info("邮件发送失败###{}", e.toString());
throw new BusinessException("failed.to.send.mail");
// throw new BusinessException("failed.to.send.mail");
}
}

View File

@@ -141,7 +141,15 @@ public class SendRequestUtil {
if (!notified[i]) {
SendEmailUtil.commonExceptionReminder(
"Flux账户积分不足flux生成任务失败",
new String[]{"xupei3360@163.com, fangjianliao@aidlab.hk, investigation@aidlab.hk"}
new String[]{"xupei3360@163.com"}
);
SendEmailUtil.commonExceptionReminder(
"Flux账户积分不足flux生成任务失败",
new String[]{"fangjianliao@aidlab.hk"}
);
SendEmailUtil.commonExceptionReminder(
"Flux账户积分不足flux生成任务失败",
new String[]{"investigation@aidlab.hk"}
);
notified[i] = true;
}