Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I send an iCalendar email attachment with Django?

I want to send an iCalendar http://en.wikipedia.org/wiki/ICalendar email attachment using Django. Is there an open source library to build an iCalendar file in Python and/or available for Django?

like image 368
MikeN Avatar asked Dec 09 '22 18:12

MikeN


1 Answers

As stated before, there is vobject, that is working fine (I have used it recently).

You can find good information about ical, vobject and django in this blog post :

http://blog.thescoop.org/archives/2007/07/31/django-ical-and-vobject/

like image 51
madewulf Avatar answered Dec 27 '22 02:12

madewulf