Commit cbec3fd9 by zhangxingmin

push

parent a9e45466
......@@ -78,7 +78,7 @@ public class MailSendJobHandler {
try {
// 处理抄送人列表:将数据库中的逗号分隔字符串转换为List
List<String> ccList = StringUtils.isNotBlank(recipient.getCcEmail()) ?
Arrays.asList(recipient.getCcEmail().split(",")) :
Arrays.asList(recipient.getCcEmail().split(";")) :
new ArrayList<>();
log.info("处理抄送人列表:将数据库中的逗号分隔字符串转换为List: {}: " + JSON.toJSONString(ccList));
// 调用邮件服务发送邮件
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment