【问题标题】:Google Calendar API (Python) send_event_notifications not sending emailsGoogle Calendar API (Python) send_event_notifications 不发送电子邮件
【发布时间】:2011-08-22 19:52:33
【问题描述】:

有一个问题: gdata.calendar.data.CalendarEventEntry.send_event_notifications 设置不起作用(不发送电子邮件):

event = gdata.calendar.data.CalendarEventEntry() 
event.title = atom.data.Title(text='test event') 
event.when.append(gdata.calendar.data.When(start=<start date>,end=<end date>)) 
event.who.append(gdata.calendar.data.EventWho(email='gue...@gmail.com',rel='http:// schemas.google.com/g/2005#event.attendee')) 
event.who.append(gdata.calendar.data.EventWho(email='organi...@gmail.com',rel='http:// schemas.google.com/g/2005#event.organizer')) 
event.send_event_notifications = gdata.calendar.data.SendEventNotificationsProperty(value='true') 
new_event = client.InsertEvent(event) 

此代码成功地在组织者的日历中设置了活动,但是 客人没有收到电子邮件...如果我打印出 new_event, “sendEventNotifications”设置确实出现了:

<ns0:entry xmlns:ns0="http://www.w3.org/2005/Atom"><ns1:sendEventNotifications value="true" xmlns:ns1="http://schemas.google.com/gCal/2005/" /><ns1:who email="gue...@gmail.com" rel="http://schemas.google.com/g/2005#event.attendee" xmlns:ns1="http://schemas.google.com/g/2005" /><ns1:who email="organi...@gmail.com" rel="http://schemas.google.com/g/2005#event.organizer" xmlns:ns1="http://schemas.google.com/g/2005" /><ns0:title>test event</ns0:title><ns1:when endTime="2011-08-23T10:00:00" startTime="2011-08-23T09:00:00" xmlns:ns1="http://schemas.google.com/g/2005"></ns1:when></ns0:entry> 

有什么线索吗? 谢谢! 中号

【问题讨论】:

    标签: python api calendar gdata


    【解决方案1】:

    好的,这是 Alain 从 Google 发布的解决方案:

    日历 XML 命名空间格式存在一个错误,该错误已被 已在存储库中修复:

    http://code.google.com/p/gdata-python-client/source/detail?spec=svnff...

    请使用存储库版本而不是发布版本,因为有很多修复 之前推送到存储库中: http://code.google.com/p/gdata-python-client/source/checkout

    谢谢,阿兰!

    【讨论】:

      猜你喜欢
      • 2022-10-01
      • 1970-01-01
      • 2021-04-18
      • 1970-01-01
      • 1970-01-01
      • 2018-10-09
      • 2017-04-14
      • 1970-01-01
      • 2015-11-13
      相关资源
      最近更新 更多