Hello,

You should be able to set the
"gCal:sendEventNotifications<http://code.google.com/apis/calendar/data/2.0/reference.html#gCalsendEventNotifications>"
field attribute to true which will result in an e-mail sent to the attendee
of an event.
Please refere to the Zend framework documentation for the correct setter.

Best,
Alain

On Mon, Jun 13, 2011 at 8:04 AM, Bim <[email protected]> wrote:

> Hey,
>
> You can do this easily with standard php using the mail function
>
> $to = '[email protected]';
> $subject = 'calendar invite';
> $from = '[email protected]';
> $headers = 'From: web app <'.$from.'>' . "\r\n";
> $message = "You have been added to the {$calendar) calendar
> View the calendar here at {$calendarurl}";
>
> if(mail($to,$subject,$message,$headers)){
> echo 'sent';
> }else{
> echo 'error!';
> }
>
> That's a basic text email, it also supports html emails - you can read more
> about it here http://php.net/manual/en/function.mail.php
>
> i'd guess this method would be preferred as it takes the load off google
> servers and gives you much more control over it
>
> Bim
>
> --
> 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://code.google.com/apis/calendar/community/forum.html
>



-- 
Alain Vongsouvanh

-- 
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://code.google.com/apis/calendar/community/forum.html

Reply via email to