Google日历发送通知无效

时间:2014-03-18 17:15:29

标签: php wordpress google-calendar-api

我正在修改Wordpress插件(重力形式为谷歌日历)以添加特定的与会者。该活动会发布到日历中,当我查看该活动时,它会包括预期的与会者,但是,它不会将该活动的通知发送给与会者。

以下是摘录:

$event->setStart($start);
$event->setEnd($end);
$attendee1 = new Google_EventAttendee();
$attendee1->setEmail('42fjsjjpte2n7ahlld603600l4@group.calendar.google.com');
// ...
$attendees = array($attendee1);
$event->attendees = $attendees;
$optArgs = array('sendNotifications'=>true);
if (! empty($location))
$event->setLocation($location);

$ret = self::$client->insert_event($calendar_id, $event, $optArgs);

你能发现我做错了吗?

0 个答案:

没有答案