I have an eml file downloaded from mailbox. I want to view the eml file as we view in outlook express from a c# application. Can anybody guide me.
Thanks
I have an eml file downloaded from mailbox. I want to view the eml file as we view in outlook express from a c# application. Can anybody guide me.
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
kadambineePosted Jan 22, 2009, 2:23 AM
I resolved the problem. See the solution below.
System.Diagnostics.
Process process = new System.Diagnostics.Process();process.StartInfo.FileName = filename ;
process.Start();