Merrin
Merrin

Reputation: 675

How to extract content of an email from Outlook 2007?

I need to write a program that extracts contents of email messages with specific subjects and saves in a text file. Where do I start? Which language has the necessary support?

Upvotes: 3

Views: 1036

Answers (3)

Eliot
Eliot

Reputation: 623

I'm lazy and like to go with VBA. If you like VBA, you can find the references below for most of what you need:

Upvotes: 0

Mike Atlas
Mike Atlas

Reputation: 8241

You can interoperate with Outlook from C++ or .NET languages using Outlook's COM+ interface.

You can find more information at Microsoft's Outlook Developer Center.

Upvotes: 2

Brad Christie
Brad Christie

Reputation: 101614

Assuming .NET:

Upvotes: 4

Related Questions