genericuser
genericuser

Reputation: 1450

Reading mails from outlook programmatically using C#

I am trying to create a program that reads my mail from Microsoft Outlook so that I can move them into different folders based on thier contents. I am using Microsoft.Office.Interop.Outlook 12.0, which works fine with Outlook 2007.

How do I handle scenario where another user uses Outlook 2010?

Upvotes: 6

Views: 1430

Answers (1)

user522860
user522860

Reputation:

Do you need to use C#? If you don't need to use C#, you can open one of the messages that you need to move and click on "add rule". There you can define rules to, for example, move all mail from your boss into a folder called work. I don't see why you need to use C#. It would be very difficult to do that in C# except simulating mouse movements...

Upvotes: 1

Related Questions