到目前为止,尝试从php生成.ics均未成功。文件已创建(下载到我的/ downloads文件夹中),但是当我单击已下载的ics事件时,没有任何反应,Outlook中也没有弹出窗口。这是我尝试过的:
$company='company';//$_GET['company'];
$proj_title='projtitle';//$_GET['proj_title'];
$proj_num='project number';//$_GET['proj_num'];
$subject='subject';//$_GET['subject'];
$subject=$proj_num.' '.$company.' - '.$proj_title.': '.$subject;
$http='http%3A%2F%2F';
$fwd_slash='%2F';
$question_mark='%3F';
$equals='%3D';
$ampersand='%26';
$description='Brief description of meeting.';
/* begin ical */
$meeting_date=date('Y-m-d')." 09:00:00";
$meeting_duration=3600;
$meeting_stamp=strtotime($meeting_date." UTC");
$dtstart=gmdate("Ymd\THis\Z",$meeting_stamp);
$dtend=gmdate("Ymd\THis\Z",$meeting_stamp+$meeting_duration);
/* set up the event properties */
$event=array(
'id' => $proj_num,
'subject' => $subject,
'description' => $description,
'datestart' => $dtstart,
'dateend' => $dtend,
'location' => 'Boardroom'
);
/* build the ics file */
$ical='BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
CALSCALE:GREGORIAN
BEGIN:VEVENT
DTEND;TZID="America/New_York":'.$dtend.'
UID:'.md5($event['subject']).'
DTSTAMP:'.time().'
LOCATION:'.addslashes($event['location']).'
DESCRIPTION:'.addslashes($event['description']).'
URL;VALUE=URI:http://tracker/ics/'.$event['id'].'
SUMMARY:'.addslashes($event['subject']) . '
BEGIN:VALARM
TRIGGER:-PT30M
REPEAT:1
DURATION:PT15M
ACTION:DISPLAY
DESCRIPTION:Reminder
END:VALARM'.'
DTSTART;TZID="America/New_York":'.$dtstart.'
END:VEVENT
END:VCALENDAR';
/* set correct content-type-header */
if($event['id']){
header('Content-type: text/calendar; charset=utf-8');
header('Content-Disposition: attachment; filename=tracker_event.ics');
echo $ical;
}
else{
header('Location: /');
}
我对icalendar事件还比较陌生,因此在网上进行了详尽的研究以提出上面给出的代码,使用伪值取得了一些成功,直到现在我需要用真实数据代替。
非常感谢您的帮助。
答案 0 :(得分:0)
已解决。问题是我将HTML内容添加到ICS的Description部分。我完全删除了Description,然后将其替换为:
X-ALT-DESC;FMTTYPE=text/html:<html>'.$html.'</html>
$ html将您希望显示的内容(在Outlook 2016,我的部署环境中)存储为HTML格式的内容。
现在一切都按我需要的方式工作了。希望有一天能对某人有所帮助。