From 4231780f5df85016c54c06b15f5192ccb3c781fe Mon Sep 17 00:00:00 2001 From: daihh Date: Tue, 8 Nov 2022 16:00:58 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=AE=E4=BB=B6=E6=A0=87=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/xboe/module/course/api/CourseManageApi.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/boe-server-all/src/main/java/com/xboe/module/course/api/CourseManageApi.java b/servers/boe-server-all/src/main/java/com/xboe/module/course/api/CourseManageApi.java index 4a92c146..5abf9da7 100644 --- a/servers/boe-server-all/src/main/java/com/xboe/module/course/api/CourseManageApi.java +++ b/servers/boe-server-all/src/main/java/com/xboe/module/course/api/CourseManageApi.java @@ -474,7 +474,7 @@ public class CourseManageApi extends ApiBaseController{ String email=dto.getAuditUser().getEmail(); if(!isLocalDevelopment()) { //只是非开发模式下才可以发送 - service.sendMail(email,"课程审核提醒", htmlEmail,"数字化学习平台"); + service.sendMail(email,"《"+dto.getCourse().getName()+"》课程审核提醒", htmlEmail,"数字化学习平台"); }else { //service.sendMail("daihaixing@bjxask.com","课程审核提醒", htmlEmail,"数字化学习平台"); } @@ -579,7 +579,7 @@ public class CourseManageApi extends ApiBaseController{ //邮件发送 if(!isLocalDevelopment()) { //只是非高度环境上才会发送 - service.sendMail(email,"课程审核提醒",htmlEmail,"数字化学习平台"); + service.sendMail(email,"《"+course.getName()+"》课程审核提醒",htmlEmail,"数字化学习平台"); } } catch (Exception ex) {