2016-02-17 93 views
0

我發現很多的例子,我自己發送一個PHP-EWS的Exchange日曆邀請,但我一直無法邀請別人到我的日曆事件,甚至有人我有完全訪問權限委派。你能舉一個完整的例子嗎?PHP-EWS發送日曆邀請

我沒有在Exchange系統管理員權限,所以我不能假設他們的身份。

埃裏克

回答

0

順便說,任何人在將來讀這篇文章,這個問題中的問題解決了我的GitHub庫,發現here。我會以任何方式在這裏發佈解決方案,以防萬一有人遇到這個問題並且有類似的問題。用我Garethp/php-ews庫,該解決方案如下

$start = new DateTime('8:01 AM'); 
$end = new DateTime('9:00 AM'); 

$createdItemIds = $calendar->createCalendarItems(array(
    'Subject' => 'Test', 
    'Start' => $start->format('c'), 
    'End' => $end->format('c'), 
    'RequiredAttendees' => array(
     array(
      'Mailbox' => array(
       'Name' => 'Person 1', 
       'EmailAddress' => '[email protected]', 
      ) 
     ), 
     array (
      'Mailbox' => array(
       'Name' => 'Person 2', 
       'EmailAddress' => '[email protected]' 
      ) 
     ) 
    ) 
), array('SendMeetingInvitations' => 'SendOnlyToAll')); 
相關問題