jmurphy1267
jmurphy1267

Reputation: 65

Outlook API Limitations

I am new to APIs and I want to make a program that will mark certain messages as being read with meating certain conditions. It this possible to do with the outlook api.

I am looking to have the user select a time duration and maybe a list of people that will mark read too.

Also if anyone has any resources for learning their api please post below.

Upvotes: 0

Views: 201

Answers (2)

Eugene Astafiev
Eugene Astafiev

Reputation: 49395

You can develop an Outlook add-in or just automate Outlook from an external application to get the job done. The Outlook 2013 developer reference section in MSDN describes all the necessary information for developers.

See Walkthrough: Creating Your First Application-Level Add-in for Outlook to get started with an add-in. And the How to automate Outlook and Word by using Visual C# .NET to create a pre-populated e-mail message that can be edited page describes how to automate Outlook (C# app automates Outlook (CSAutomateOutlook)).

To find items that correspond to your conditions use the Find/FindNext or Restrict methods of the Items class.

Upvotes: 1

Dmitry Streblechenko
Dmitry Streblechenko

Reputation: 66245

Sure, set MailItem.UnRead property to false.

Upvotes: 0

Related Questions