Re: Best way to construct an email - attach a html file and send

2006-08-09 Thread a
thanks guys..!!! Kenneth Gonsalves wrote: > On 09-Aug-06, at 3:34 PM, a wrote: > > > What is the best way to construct an email in python and also attach a > > html file > > covered in the docs - see sending email: > > http://www.djangoproject.com/documentation/email/ > > > -- > > regards > kg > h

Re: Best way to construct an email - attach a html file and send

2006-08-09 Thread Kenneth Gonsalves
On 09-Aug-06, at 3:34 PM, a wrote: > What is the best way to construct an email in python and also attach a > html file covered in the docs - see sending email: http://www.djangoproject.com/documentation/email/ -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ -

Re: Best way to construct an email - attach a html file and send

2006-08-09 Thread Ivan Sagalaev
a wrote: > What is the best way to construct an email in python and also attach a > html file You can use 'email' package from Python's standard library to create MIME message with an attachment. > the html file to be attached is not on disk, but should be dynamically > constructed in the pytho

Best way to construct an email - attach a html file and send

2006-08-09 Thread a
What is the best way to construct an email in python and also attach a html file the html file to be attached is not on disk, but should be dynamically constructed in the python script I want to attach the django debug error to an email and mail it to myself whenever there is an error in the app