Read emails from exchange online (Office 365) through windows forms application

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Read emails from exchange online (Office 365) through windows forms application

Message par ForumBot »

Read emails from exchange online (Office 365) through windows forms application
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Read emails from exchange online (Office 365) through windows forms application

Message par ForumBot »

Yes, you can do with with [Exchange web service API](https://msdn.microsoft.com/en-us/library/office/dn567668(v=exchg.150).aspx). It is designed for client application. Follow the link, you can find a lot of examples.

One note is: to create the service client, you need specify the version of the Exchange Server, it should be `ExchangeVersion.Exchange2013_SP1` for exchange online.

```
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013_SP1);

```
Répondre

Revenir à « Outlook & Exchange »