I\'m making an Outlook Add-in (Visual Studio 2010, .NET 4.0, C#), and I would like to automatically archive a user\'s email after they send it. What I have so far is the followi
you can try with this code
private void saveEmail(object Item, ref bool Cancel) { var msg = Item as Outlook.MailItem; msg.SaveAs(yourPath, Outlook.OlSaveAsType.olMSG); }