Reading e-mail without Outlook app open

后端 未结 6 1714
借酒劲吻你
借酒劲吻你 2021-01-12 01:44

Thats what I am using to read e-mail using C#:

outLookApp.NewMailEx += new ApplicationEvents_11_NewMailExEventHandler(outLookApp_NewMailEx);
            Outl         


        
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-12 02:23

    I would personally not use Outlook as a proxy. If you're trying to ultimately monitor an Exchange store, then I'd use WebDav. Your Exchange server must support it - but if it does, it's a simple XML API. Well, the API bit is simple, but the XML is quite convoluted. But once you've encapsulated this in a bit of code, it's a doddle to use.

提交回复
热议问题