Hi Zd,
There is the outlook listview control to view your outlook folders and
launch the outlook.
Inject this js snippet into a web page hosted in your WebBrowser control
document.write('<OBJECT style=\"left:200px\"
classid=\"CLSID:0006F063-0000-0000-C000-000000000046\" id=\"ViewCtlFolder\"
codebase=\"http://activex.microsoft.com/activex/controls/office/outlctlx.CAB#ver=9,0,0,3203\"
tabIndex=\"1\" VIEWASTEXT>');
document.write('<param name=\"Namespace\" value=\"MAPI\">');
document.write('<param name=\"Folder\" value=\"Inbox\">');
document.write('<param name=\"Restriction\" value=\"\">');
document.write('<param name=\"DeferUpdate\" value=\"0\">');
document.write('</OBJECT>');
or you can host the control in a Windows Form. Use CreateObject.
For further tips see the .eml file extension handler entries in your
registry.
If you are writing your own POP server, then that is a different bag of
fish.
Regards.
Post by ZdravkoHi
is there other option?
I mean, I need to see email body inside my app.
Zdravko
Post by PA Bear [MS MVP]EML files should open in Outlook Express, not IE or a browser.