将与会者添加到Google日历活动中

时间:2016-12-13 21:23:36

标签: vb.net google-calendar-api

我有一个VB应用程序,可以在Google日历中创建事件。它是v3库。

它支持弹出提醒通知,但现在我想支持电子邮件通知。

我做了更多研究,并找到了一个帮助页面,表明可以将电子邮件通知发送给活动参加者。

但我无法找到解释如何将与会者添加到新活动的教程。

建议表示赞赏。如果这是错误的地方,将重新发布。

1 个答案:

答案 0 :(得分:2)

应该这样做..

Private Sub AddAttendeeToEvent(calEvent As [Event], name As String, email As String, comment As String, responseStatus as String)
    Dim attendee As New EventAttendee
    attendee.DisplayName = name
    attendee.Email = email
    attendee.Comment = comment
    attendee.ResponseStatus = responseStatus
    calEvent.Attendees.Add(attendee)
End Sub

如果您愿意,您当然可以包含其他属性。不要忘记`.ResponseStatus“字符串仅限于”拒绝“,”接受“,”暂定“或”needsAction“