| mail.Logging = true;
//字符集,缺省为"US-ASCII" jmail.Charset = base.DefaultCharset;
//信件的contentype. 缺省是"text/plain") : 字符串如果你以HTML格式发送邮件, 改为"text/html"即可。 if (message.BodyFormat == MailFormat.Html) jmail.ContentType = "text/html";
jmail.Priority = GetJmailPriority(message.Priority);
//添加收件人 string[] toArray = MySmtpMail.GetTo(message); if (toArray != null && toArray.Length > 0) { bool isAddedRecipient = false;
for (int i = 0; i < toArray.Length; i++) { if (Globals.IsNullorEmpty(toArray[i])) &n 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] ... 下一页 >> |