2009/2/23 Aravind V.K <[email protected]>: > > Hi, > > I managed to create edit and delete events in google calendar from my > php page. Now I want to add emails associated to a particular event so > that if i change any detail of that event a notification should be > sent to them via this email..I am able to get the event id now..please > help me.. > > > Thanks and Regards, > > Aravind.V.K
Hi Aravind, To do this, you'll need to add those email addresses as invitees to the event. Then, when you are making any changes to the event via the API, you'll want to add the gCal:sendEventNotifications XML element in the event data sent to our servers. You can do this in the PHP client as follows: $eventEntry->setSendEventNotifications(new Zend_Gdata_Calendar_SendEventNotifications(true)); -- Trevor Johns --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
