open specific e-mail messages in outlook 2007 c#

  • Thread starter Thread starter xiahmi
  • Start date Start date
X

xiahmi

Hi,

I have saved an e-mail message in my local computer and
what I want to do is I want to open it in outlook 2008 using C# VS2008.
Is it possible?

I found this piece of code

System.Diagnostics.Process.Start("mailto:[email protected]");

When I saved an outlook email message I got the ff
one htm file
one folder containg the ff items (colorschememapping, filelist, themedata)

can I use these files to open the specific mail in outlook?

thanks thanks
 
You would need to save your email to the file system as a MSG file. Then you
can use Application.CreateItemFromTemplate() to open the MSG file.
 
Back
Top