xxyyxx
xxyyxx

Reputation: 2396

Outlook folder for sent tasks

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

Answers (1)

SliverNinja - MSFT
SliverNinja - MSFT

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

Related Questions