【发布时间】:2015-04-29 07:06:06
【问题描述】:
我正在尝试使用 php 和 sendgrid 在 Outlook 上发送日历邀请。所以我需要创建一个不是问题的 ics 文件。问题是我需要设置标题。 Gmail 将 ics 文件识别为日历邀请,但 Outlook 不会。这是我想出的全部代码,但我无处可去。请帮忙。我搜索了每个博客,以了解如何在 sendgrid 中添加诸如 content-type 和 content-disposition 之类的标头,但无济于事。
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php
include("/Users/aaa/Downloads/sendgrid-php/sendgrid-php.php");
include('/Users/aaa/Downloads//smtpapi-php/smtpapi-php.php');
$sendgrid = new SendGrid("uname", "pass");
$email = new SendGrid\Email();
$ical = "
Content-Type: text/calendar;method=request
MIME-Version: 1.0
BEGIN:VCALENDAR
METHOD:REQUEST
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)) . "@time.co
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:20150429T170000Z
DTEND:20150429T035959Z
SUMMARY:New event has been added
END:VEVENT
END:VCALENDAR";
$filename = "invite.ics";
$file = fopen($filename, 'w');
fwrite($file, $ical);
fclose($file);
$email->addTo("aaa@outlook.com")
->setFrom("aaa@example.com")
->setSubject("Subject")
->setAttachment($filename)
->addHeader('Content-Type', 'multipart/alternative')
->addHeader('Content-Disposition', 'inline');
$sendgrid->send($email);
var_dump($sendgrid);
try {
$sendgrid->send($email);
} catch(\SendGrid\Exception $e) {
echo $e->getCode();
foreach($e->getErrors() as $er) {
echo $er;
}
}
?>
</body>
</html>
【问题讨论】:
标签: php outlook icalendar sendgrid