提交 2714cb1e 编写于 作者: B Baoqi

before send mail, check whether no receivers && cc receivers.

to avoid exception javax.mail.SendFailedException: No recipient
addresses. Especially from SQL Task
上级 9c79a0f9
......@@ -102,11 +102,16 @@ public class MailUtils {
*/
public static Map<String,Object> sendMails(Collection<String> receivers, Collection<String> receiversCc, String title, String content, ShowType showType) {
Map<String,Object> retMap = new HashMap<>();
retMap.put(Constants.STATUS, false);
receivers.removeIf((from) -> (StringUtils.isEmpty(from)));
// if there is no receivers && no receiversCc, no need to process
if (CollectionUtils.isEmpty(receivers) && CollectionUtils.isEmpty(receiversCc)) {
retMap.put(Constants.STATUS, true);
return retMap;
}
retMap.put(Constants.STATUS, false);
if (showType == ShowType.TABLE || showType == ShowType.TEXT){
// send email
HtmlEmail email = new HtmlEmail();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册