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
