Best way to access Exchange using PHP?

后端 未结 9 1215
执笔经年
执笔经年 2020-12-01 00:08

I\'m writing a CMS application in PHP and one of the requirements is that it must be able to interface with the customer\'s Exchange server. I\'ve written up this functiona

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-01 00:49

    I'm not a PHP dev but Google says that PHP 5+ can instantiate COM components. If you can install Outlook on a box you could write a PHP web service around the COM component to handle the requests you need.

    $outlook = COM("Outlook.Application")
    

    Outlook API referance

提交回复
热议问题