未验证 提交 4fbd9380 编写于 作者: journey2018's avatar journey2018 提交者: GitHub

Update MailUtils.java

if there is no receivers && no receiversCc, no need to process
上级 2714cb1e
......@@ -102,16 +102,15 @@ 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<>();
receivers.removeIf((from) -> (StringUtils.isEmpty(from)));
retMap.put(Constants.STATUS, false);
// 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);
receivers.removeIf((from) -> (StringUtils.isEmpty(from)));
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.
先完成此消息的编辑!
想要评论请 注册