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
If i open the same file in Notepad i don't get any error.
Suggestions???
Regards
MRRCOMP