Read emails from exchange online (Office 365) through windows forms application
Read emails from exchange online (Office 365) through windows forms application
Read emails from exchange online (Office 365) through windows forms application
Re: Read emails from exchange online (Office 365) through windows forms application
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);
```
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);
```