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

2006-08-23 Thread a
hey larry thanks Larry Bates wrote: > a wrote: > > 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

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

2006-08-23 Thread Larry Bates
a wrote: > where is the link > thanks a lot for your kind help > Larry Bates wrote: >> a wrote: >>> 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 scrip

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

2006-08-12 Thread a
where is the link thanks a lot for your kind help Larry Bates wrote: > a wrote: > > 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

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

2006-08-09 Thread Grant Edwards
On 2006-08-09, a <[EMAIL PROTECTED]> wrote: > 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 Sounds like a job for MimeWriter to me. -- Grant Edwards

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

2006-08-09 Thread skip
py> What is the best way to construct an email in python and also attach py> a html file ... Check out the email package. Skip -- http://mail.python.org/mailman/listinfo/python-list

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

2006-08-09 Thread Larry Bates
a wrote: > 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 ther

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 appl