1 message in com.googlegroups.google-calendar-help-dataapiInvitations sent to attendees on even...
FromSent OnAttachments
Cadish28 Jul 2008 00:36 
Subject:Invitations sent to attendees on event creation
From:Cadish (hade@gmail.com)
Date:07/28/2008 12:36:14 AM
List:com.googlegroups.google-calendar-help-dataapi

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?