Hi,
I want to read mails from exchange server without using outlook.
can anyone please suggest me the way to do that with code snippets in c# .net.
Thanks in advance.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Simon BPosted Sep 10, 2011, 2:40 AM
Try WebDAV .NET for Exchange: http://www.independentsoft.de/webdavex/index.html
/Simon
srilatha dasariPosted Sep 7, 2011, 10:12 AM
but, i think web services is not enabled in Microsoft exchange 2003.
Please let me know if web services is enabled for it or not.
thanks in advance.
Posted Sep 7, 2011, 9:23 AM
2
3
4
5
//service.Credentials = new NetworkCredential( "{Active Directory ID}", "{Password}", "{Domain Name}" );
service.AutodiscoverUrl( "[email protected]" );
2
3
4
5
6
WellKnownFolderName.Inbox,
new ItemView( 10 ) );
foreach ( Item item in findResults.Items )
Console.WriteLine( item.Subject );