0

I am trying to save the email msg as a file on the local drive.

 FileInfo msgfile = new FileInfo(Path.Combine(@"C:\\Users\\Public\\Documents\\msg-" + filenumber + ".msg"));
 getMessage.Save(msgfile);

But when I attempt to open the file Outlook gives me the following error

enter image description here

If i open the same file in Notepad i don't get any error.

Suggestions???

Regards

MRRCOMP

Saeed Nasehi
  • 940
  • 1
  • 11
  • 27

1 Answers1

0

I solved by saving with extension .eml and not msg

Hope this helps others

Regards