我正在使用Django和python-icalendar生成iCalendar文件,它们作为 session 邀请正确显示在Outlook(2010)中。在Gmail(Google Apps)中,我只看到一封空白电子邮件。这是怎么回事?这是我的.ics文件之一:
BEGIN:VCALENDAR
METHOD:REQUEST
PRODID:-//My Events App//example.com//
VERSION:2.0
BEGIN:VEVENT
ATTENDEE;CN=Richard;ROLE=REQ-PARTICIPANT;RSVP=TRUE:MAILTO:[email protected]
CREATED;VALUE=DATE:20101122T183813
DESCRIPTION:Phone number: (212)-123-4567\n\nThis is a test description
for the conference call.
DTEND;VALUE=DATE:20101127T131802Z
DTSTAMP;VALUE=DATE:20101127T121802Z
DTSTART;VALUE=DATE:20101127T121802Z
LAST-MODIFIED;VALUE=DATE:20101122T183813
ORGANIZER;CN=Example.com:[email protected]
SEQUENCE:1
SUMMARY:Conference call about GLD
UID:example.com.20
END:VEVENT
END:VCALENDAR
哦,我正在使用Django的EmailMultiAlternatives附加ics内容,如下所示:
if calendar:
message.attach_alternative(calendar.as_string(), "text/calendar; method=REQUEST; charset=\"UTF-8\"")
message.content_subtype = 'calendar'
最佳答案
这可能有点晚了,但是这是我在模型中作为帮助函数的实现(这是一个“事件”模型,其中包含一个日期作为其自身的属性):
from icalendar import Calendar, Event as ICalEvent
...
class Event(models.Model):
...
def generate_calendar(self):
cal = Calendar()
site = Site.objects.get_current()
cal.add('prodid', '-//{0} Events Calendar//{1}//'.format(site.name,
site.domain))
cal.add('version', '2.0')
ical_event = ICalEvent()
ical_event.add('summary', self.title)
ical_event.add('dtstart', self.start_date)
ical_event.add('dtend', self.end_date)
ical_event.add('dtstamp', self.end_date)
ical_event['uid'] = str(self.id)
cal.add_component(ical_event)
return cal.to_ical()
然后在发送电子邮件的功能中,我有:
# This one has the plain text version of the message
msg = EmailMultiAlternatives('Event Confirmation', text_email,
FROM_EMAIL, [self.user.email])
# This one has the HTML version of the message
msg.attach_alternative(html_email, 'text/html')
# Now to attach the calendar
msg.attach("{0}.ics".format(self.event.slug),
self.event.generate_calendar(), 'text/calendar')
msg.send(fail_silently=True)
该解决方案使用icalendar(我更喜欢vobject),并且还使用attach_alternative()附加(字面意义)该消息的替代版本。无论电子邮件客户端选择呈现的消息是什么版本,attach()函数都将被用于抛出日历文件(请注意,我也给它提供了“.ics”扩展名)。
我意识到您正在使用python-icalendar,但是attach()方法应该仍然可以正常工作。我刚刚决定还向您展示生成iCal文件的替代实现。
关于django - 如何获得 session 邀请以与Gmail/Google Apps正确集成?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4251378/