Problem Of Sending HTML Email With JMail
-
I have a problem of sending html email with JMail. The Oodes is like the following [CODE] IMessage oMessage = new MessageClass(); oMessage.From = xxx; oMessage.FromName = xxx; oMessage.Charset = "UTF-8"; oMessage.Subject = xxx; oMessage.AddRecipient(xxx, "", ""); oMessage.AppendHTML(xxx); oMessage.Send(xxx); [/CODE] I do not get any error message when the program runs,nor do I receive the reply from mail server about sending failure,but the mail does not reach the recipient email address. Because the program runs in my own company,the mail server is exchange 2003,it does not need smtp authentication,if I do not send html format email but ordinary text email,it works. Why is that,Does the problem lie in Code sector or Exchange server settings,Thanks!