|
|
@ -200,6 +200,9 @@ public class MailUtil {
|
|
|
|
msg.setSubject( MimeUtility.encodeText(this.title, MimeUtility.mimeCharset("gb2312"), null));
|
|
|
|
msg.setSubject( MimeUtility.encodeText(this.title, MimeUtility.mimeCharset("gb2312"), null));
|
|
|
|
msg.setSubject(this.title);
|
|
|
|
msg.setSubject(this.title);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 消息主体内容 处理
|
|
|
|
|
|
|
|
this.content = this.content == null ? "" : this.content;
|
|
|
|
|
|
|
|
|
|
|
|
msg.setContent(this.content, this.content_type);
|
|
|
|
msg.setContent(this.content, this.content_type);
|
|
|
|
|
|
|
|
|
|
|
|
msg.saveChanges();
|
|
|
|
msg.saveChanges();
|
|
|
|