Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
Hello! I need an urgent help.

Im seeking the open source EML viewer project which I can modify in visual studio. I found some projects on this site and thought anyone could help me find..


Thanks in advance
Posted
Updated 13-Mar-12 22:59pm
v2

1 solution

This is quite a big project by one simple reason: it's not a problem to parse e-mail and decode each of its parts. The problem is different: you need to support and render each and every MIME type which can be embedded or alternatively embedded (there are different "content dispositions"), and the number of them is pretty big. For example, you will need to support all graphics formats standardized as different MIME types, and that means all container formats and all compression formats which are not indicated in MIME line. Besides, you will need to support whole HTML, RTF and more.

(Please see http://en.wikipedia.org/wiki/MIME[^].)

So, just two ideas: you can use for rendering the component WebBrower.

Another alternative is this HTML renderer based on RichTextBox offered in this CodeProject article, a very good one:
A Professional HTML Renderer You Will Use[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900