Reputation: 2396
Does anyone know what Folder
Outlook stores its Sent Tasks in? I'm trying to design an addin that includes providing an new interface for tasks the user has sent out.
Upvotes: 1
Views: 203
Reputation: 31651
Sent Tasks are stored in the Sent Items folder OlDefaultFolders.olFolderSentMail
.
Outlook.Folder sentMail = this.Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail) as Outlook.Folder;
Upvotes: 2