Hi,
I'm struggling with this issue: when I add an event through the API
(via PHP), every attendee gets an invite sent by Google Calendar.
I don't want Google Calendar to send this invites. I already tried to
use setsendeventnotification, but this doesn't seem to work either.
This is the code is use:
$attendee = $gdataCal->newWho($_REQUEST['email'], null, null,
$gdataCal->newAttendeeStatus('http://schemas.google.com/g/
2005#event.accepted'));
$newEvent->who = array($attendee);
$notification = $gdataCal->newSendEventNotifications();
$notification->setValue('false');
$newEvent->sendEventNotifications = $notification;
Can you please help me out here?