[用python发送Google日历事件时发送电子邮件通知

问题描述 投票:0回答:1

我正在使用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': '[email protected]'},
    {'email': '[email protected]'},
  ],
  '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',但它不起作用。

python google-api google-calendar-api
1个回答
0
投票

应该跟随...

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

© www.soinside.com 2019 - 2024. All rights reserved.