We are displaying HTML body extracted from .MSG files exported from Outlook.

To display the HTML body, one needs to decompress RTF from PR_RTF_Compressed field and then decode the RTF to HTML (outlook actually encodes HTML to RTF when exporting MSG files). We are using RDO library to parse the msg files and extract the HTML body.

RDO produces some HTML that is not always the same as Outlook displays (text size sometimes does not match etc.)

Is anybody aware of an implementation of HTML body extraction that would most closely match the appearance of HTML displayed by Outlook or is this impossible?

link|improve this question

77% accept rate
Are you sure the html->rtf conversion is even lossless? – CodeInChaos Nov 27 '10 at 10:46
It is irrelevant whether it is lossless. Outlook parses the exact data that is contained in the .msg that we have available. The requirement is to match what Outlook displays when opening the same .msg file 1:1. – Marek Nov 28 '10 at 8:26
feedback

1 Answer

more thoughts than an answer...

Are you displaying the extracted body in a browser such as IE?
I expect that the issue is that Outlook (2007) uses the Word rendering engine to display HTML while browsers use their own. So, I don't think you are likely to find an extraction implementation that will help.
Can you apply a stylesheet to your extracted body document, that will override most of the inconsistencies?

link|improve this answer
Thanks for comment. Yes, we are displaying that using IE (WebBrowser control). We can also apply a style sheet. But the HTML we get from RDO contains a lot of inline styles. We will try to focus on finding a method how to match styles rendered by word in IE. Thanks! – Marek Dec 17 '09 at 13:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.