views:

50

answers:

1

The problem:

Random e-mail from different clients are received in my MS Exchange mailbox, I am not concerned with previous content rather the latest text of the message and would like to extract it.

This is currently developed as C# managed Exchange sink obtain these messages but I cannot devise a straightforward method to reliably parse it or is parsing even the correct approach?

I also don't see any property tags that give me any direction to obtain the latest text either.

Any ideas?

Thanks

A: 

You may want to take a look at Exchange Web Services a.k.a. EWS (see Item Operations section on the document) and its client counter-part - EWS Managed API.

Working with Items shows how to manipulate items (messages are items)

Alfred Myers