我正在用 PHP 构建一个事件管理 Web 应用程序,并且正在使用 Google Data API 来使用 Google 日历。
我使用以下方法添加了客人:
$gc = new Zend_Gdata_Calendar($client);
$newEntry = $gc->newEventEntry();
$newEntry->who=array($gc->newWho('abc@gmail.com'));
我想向添加的客人发送邮件以通知他们该事件。(此功能在 Google 日历 UI 中提供)。
我怎样才能做到这一点?