Author |
|
dbug13 Newbie
Joined: 11 May 2012 Location: United States
Online Status: Offline Posts: 1
|
Posted: 11 May 2012 at 9:52am | IP Logged
|
|
|
I'm using the latest version of the MailBee.net objects (version 7).
When using MailBee.Outlook.MsgConvert to convert .eml messages to .msg messages using the following code:
Code:
MsgConvert conv = new MsgConvert();
conv.HtmlToRtfMethod = HtmlToRtfConversionMethod.None;
conv.EmlToMsg(emlPath, msgPath);
|
|
|
It will produce a .msg Message that displays in Outlook as a PlainText version of the email, even though it is an HTML version message.
NOTE: The previous version of the MailBee objects (version 6) did not produce this behavior, it produced an email message identical to the .eml message converted, in that if message contained html the .msg file produced would look identical to the original .eml message.
IS this a bug? Or is thee a new way that I can produce a .msg that looks identical to .eml messages, in terms of HTML formatting?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 11 May 2012 at 1:25pm | IP Logged
|
|
|
Displaying plaintext part by Outlook means that HTML part wasn't found in a message. Of course, there might be a problem of converting EML to MSG, but it might also be caused by a problem in mail message itself. To let us check this, please provide us with a message we could use to replicate the issue.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|