In an announcement dated July 1st, 2011, located here http://www.aspose.com/blogs/?p=5180
, you noted that it is now possible to open another user’s mailbox on exchange server with Aspose.Email, but I can’t find any documentation on how to actually do it. I’m using the Exchange Web Service Client. Thanks for any help you can provide!
Hi,
Thank you for using Aspose.Email.
You can access other user’s mailbox using the following lines of statements:
// Create instance of ExchangeWebServiceClient class by giving MailboxURI &
credentials
ExchangeWebServiceClient client = new ExchangeWebServiceClient("http://MachineName/exchange/Username","user", "pwd", "domain");
// Get Exchange mailbox info of other email account
ExchangeMailboxInfo mailboxInfo = client.GetMailboxInfo("otherUser@domain.com");
You can find more information in this regard from our documentation article available at this LINK .
Moreover, you can also access a custom folder/sub-folder on a mailbox by using the code sample available at HERE.