views:

63

answers:

2

It does not matter what programming language. Can anyone please give me an idea if this is possible and any tools or API's available please?

+1  A: 

Given that you used the imap tag, I'm assuming that means that you have IMAP access to the server. In that case, then yes. There are several third-party components available that provide IMAP access in .NET code. I have personally used RebEx Secure Mail for .NET, and they provide a trial period where you can try it out and see if it will work for your purposes. There's also a fairly helpful help site.

For something free, try this: http://interimap.codeplex.com/

Adam Robinson
The price is too high for personal use. Any other options please? any open source?
JPro
@JPro: It was just an example. There are several other packages out there; Googling "C# IMAP" should get you started.
Adam Robinson
A: 

You may want to take a look at Exchange Web Services.

There's also a client library called EWS Managed API for .Net which provides a better API than that created by web service proxy code generator.

Alfred Myers