Hi, I was able to create event with non-gcal user email as attendee, and that user does receive the email invitation. This is my XML that being sent -
<atom:entry> <atom:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/g/2005#event"/> <atom:title type="text">JAVA-CLIENT: create event</atom:title> <atom:content type="text">This event is created by JAVA-CLIENT</atom:content> <gCal:sendEventNotifications value="true"/> <gd:when startTime="2008-03-28T15:00:00.000-07:00" endTime="2008-03-28T17:00:00.000-07:00"/> <gd:who rel="http://schemas.google.com/g/2005#event.organizer" email="[EMAIL PROTECTED]"> <gd:attendeeStatus value="http://schemas.google.com/g/2005#event.accepted"/> </gd:who> <gd:who rel="http://schemas.google.com/g/2005#event.attendee" email="[EMAIL PROTECTED]"> <gd:attendeeStatus value="http://schemas.google.com/g/2005#event.invited"/> </gd:who> </atom:entry> Looking at your XML, I see that your "rel" for gd:who element isn't specified correctly, it should be #event.organizer or #event.attendee. Hope that helps, Austin On Tue, Apr 8, 2008 at 2:39 PM, <[EMAIL PROTECTED]> wrote: > > After some further testing, the problem is not the email address > itself but weather > or not that address has a gCal or not. If not, no email is sent. > > Any help would be much appreciated. > > Rick > > > On Apr 8, 12:14 pm, [EMAIL PROTECTED] wrote: > > Here are two identical entries, except for the invitee email > > addresses. The gmail address gets an email the other does not. Can > > anyone shed light on this problem? > > > > Thanks, > > Rick > > > > Entry w/gmail address: > > curl --silent --request POST --data " <entry xmlns='http://www.w3.org/ > > 2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'> <category > > scheme='http://schemas.google.com/g/2005#kind'term='http:// > > schemas.google.com/g/2005#event'></category> <title type='text'>bar2</ > > title> <content type='text'>bar2</content> <gd:transparency > > value='http://schemas.google.com/g/2005#event.opaque'></ > > gd:transparency> <gd:eventStatus value='http://schemas.google.com/g/ > > 2005#event.confirmed'></gd:eventStatus> <gd:where > > valueString='bar2'></gd:where> <gd:when > > startTime='2008-04-03T20:00:00.000Z' > > endTime='2008-04-03T20:30:00.000Z'></gd:when><gd:who rel='http:// > > schemas.google.com/g/2005#message.from' > > email='[EMAIL PROTECTED]'/><gd:who rel='http:// > > > schemas.google.com/g/2005#message.to' valueString='Rick' > > email='[EMAIL PROTECTED]'/><gCal:sendEventNotifications > > > xmlns:gCal='http://schemas.google.com/gCal/2005'value='true'/></ > > entry>" --header "Content-Type: application/atom+xml" --header > > "Authorization: GoogleLogin Auth=blah blah" "http://www.google.com/ > > calendar/feeds/rnk6pdli2taijgiia2tbje50p0%40group.calendar.google.com/ > > private/full" > > > > Entry w/out gmail: > > curl --silent --request POST --data " <entry xmlns='http://www.w3.org/ > > 2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'> <category > > scheme='http://schemas.google.com/g/2005#kind'term='http:// > > schemas.google.com/g/2005#event'></category> <title type='text'>bar2</ > > title> <content type='text'>bar2</content> <gd:transparency > > value='http://schemas.google.com/g/2005#event.opaque'></ > > gd:transparency> <gd:eventStatus value='http://schemas.google.com/g/ > > 2005#event.confirmed'></gd:eventStatus> <gd:where > > valueString='bar2'></gd:where> <gd:when > > startTime='2008-04-03T20:00:00.000Z' > > endTime='2008-04-03T20:30:00.000Z'></gd:when><gd:who rel='http:// > > schemas.google.com/g/2005#message.from' > > email='[EMAIL PROTECTED]'/><gd:who rel='http:// > > > schemas.google.com/g/2005#message.to' valueString='Rick' > > email='[EMAIL PROTECTED]'/><gCal:sendEventNotifications > > > > xmlns:gCal='http://schemas.google.com/gCal/2005'value='true'/></ > > entry>" --header "Content-Type: application/atom+xml" --header > > "Authorization: GoogleLogin Auth=blah blah" "http://www.google.com/ > > calendar/feeds/rnk6pdli2taijgiia2tbje50p0%40group.calendar.google.com/ > > private/full" > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
