Commit e3192913 by yao.xiao

修改-经纪人申请专家支持

parent bb366d4d
...@@ -3000,11 +3000,14 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -3000,11 +3000,14 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
//发邮件 //发邮件
//发送邮件给客服,同步跟进 //发送邮件给客服,同步跟进
String toAddress = systemConfigService.getSingleConfigValue("CommentNotifyToAddress"); String toAddress = systemConfigService.getSingleConfigValue("ApplyForExpertSupportToAddress");
List<String> ccList = systemConfigService.getListConfigValue("CommentNotifyCCAddresses"); String ccAddress = systemConfigService.getSingleConfigValue("ApplyForExpertSupportCCAddresses");
String[] ccAddresses = new String[ccList.size()]; List<String> ccList = new ArrayList<>();
for (String address :ccAddress.split(",")){
ccList.add(address);
}
String[] ccAddresses = ccList.toArray(new String[ccList.size()]);
ccList.toArray(ccAddresses); ccList.toArray(ccAddresses);
String subject = "申请专家支持"; String subject = "申请专家支持";
String messageText = "尊敬的管理员,您好!"; String messageText = "尊敬的管理员,您好!";
messageText += "申请专家支持"; messageText += "申请专家支持";
......
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