How to create an outlook calendar meeting request in PHP?(如何在 PHP 中创建 Outlook 日历会议请求?)
本文介绍了如何在 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
这篇关于如何在 PHP 中创建 Outlook 日历会议请求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在 PHP 中创建 Outlook 日历会议请求?


猜你喜欢
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01