如何在 PHP 中创建 Outlook 日历会议请求?
有人能指出我正确的方向吗?我知道这与附加 .ics 文件有关,但我只能将其设置到用户可以下载然后将事件导入他们的 Outlook 日历的程度?如何以编程方式创建这些会议请求?
Can someone point me in the right direction? I know it has to do with attaching a .ics file, but I can only get it to the point where a user can download and then import the event into their outlook calendar? How can I programmatically create these meeting requests?
推荐答案
以下是多个参与者的工作示例:
Here is working example with multiple participants:
<?php
$to = 'boushh@arturito.net,bobafett@arturito.net';
$subject = "Millennium Falcon";
$organizer = 'Darth Vader';
$organizer_email = 'darthvader@arturito.net';
$participant_name_1 = 'Boushh';
$participant_email_1= 'boushh@arturito.net';
$participant_name_2 = 'Boba Fett';
$participant_email_2= 'bobafett@arturito.net';
$location = "Stardestroyer-013";
$date = '20131026';
$startTime = '0800';
$endTime = '0900';
$subject = 'Millennium Falcon';
$desc = 'The purpose of the meeting is to discuss the capture of Millennium Falcon and its crew.';
$headers = 'Content-Type:text/calendar; Content-Disposition: inline; charset=utf-8;
';
$headers .= "Content-Type: text/plain;charset="utf-8"
"; #EDIT: TYPO
$message = "BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Deathstar-mailer//theforce/NONSGML v1.0//EN
METHOD:REQUEST
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)) . "example.com
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:".$date."T".$startTime."00Z
DTEND:".$date."T".$endTime."00Z
SUMMARY:".$subject."
ORGANIZER;CN=".$organizer.":mailto:".$organizer_email."
LOCATION:".$location."
DESCRIPTION:".$desc."
ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN".$participant_name_1.";X-NUM-GUESTS=0:MAILTO:".$participant_email_1."
ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN".$participant_name_2.";X-NUM-GUESTS=0:MAILTO:".$participant_email_2."
END:VEVENT
END:VCALENDAR
";
$headers .= $message;
mail($to, $subject, $message, $headers);
?>
如果您需要添加/删除选项,这里是 VCALENDAR 的参考:维基百科上的 VCALENDAR
If you need to add/remove options here is a reference of VCALENDAR: VCALENDAR on Wikipedia
相关文章