Saving an email as an MSG after a send

M

Mystery Man

What I want to do is send an email and then save the mailItem.

ie

mailItem.Send();
mailItem.SaveAs(fileName, Outlook.OlSaveAsType.olMSG);

However, this does not work because the item has been deleted

If I save then send, all works fine except the message is shown as not being sent.

mailItem.SaveAs(fileName, Outlook.OlSaveAsType.olMSG);
mailItem.Send();

What is the simplest way of getting the sent message as an MSG?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top