在python中发送Google日历事件时发送电子邮件通知

时间:2020-06-08 12:42:19

标签: python google-api google-calendar-api

我正在使用google-calendar-api添加新事件。当我向与会者发送邀请时,该活动将添加到他们的日历中,但不会收到电子邮件通知:

event = {
  'summary': 'Google I/O 2015',
  'location': '800 Howard St., San Francisco, CA 94103',
  'description': 'A chance to hear more about Google\'s developer products.',
  'start': {
    'dateTime': '2015-05-28T09:00:00-07:00',
    'timeZone': 'America/Los_Angeles',
  },
  'end': {
    'dateTime': '2015-05-28T17:00:00-07:00',
    'timeZone': 'America/Los_Angeles',
  },
  'recurrence': [
    'RRULE:FREQ=DAILY;COUNT=2'
  ],
  'attendees': [
    {'email': 'lpage@example.com'},
    {'email': 'sbrin@example.com'},
  ],
  'reminders': {
    'useDefault': False,
    'overrides': [
      {'method': 'email', 'minutes': 24 * 60},
      {'method': 'popup', 'minutes': 10},
    ],
  },
}

event = service.events().insert(calendarId='primary', body=event).execute()
print 'Event created: %s' % (event.get('htmlLink'))

如何添加电子邮件通知?

我尝试添加sendNotifications: TruesendUpdates: 'all',但这是行不通的。

1 个答案:

答案 0 :(得分:1)

应该在后面...

event = service.events().insert(calendarId='primary', body=event, sendUpdates='all').execute()

来源: https://developers.google.com/resources/api-libraries/documentation/calendar/v3/python/latest/calendar_v3.events.html#insert