Re: reg email packages work

2005-09-02 Thread Tim Roberts
praba kar <[EMAIL PROTECTED]> wrote: > > I am working in web based email system project. >Here I try to build email message >from scratch. I used below code to build email >message > > msg = email.MIMEBase('text','html') > msg['Return-Path'] = user+'@'+domain > msg['Date'] = formatdate

Re: reg email packages work

2005-08-30 Thread Robert Kern
praba kar wrote: > --- Sybren Stuvel > <[EMAIL PROTECTED]> wrote: > >>Steve Holden enlightened us with: >> >>>It's obvious you aren't using that EXACT code, >> >>because it doesn't >> >>>formulate a three-paragraph message. So the bit we >> >>really need to >> >>>see is how you capture and formula

Re: reg email packages work

2005-08-30 Thread Steve Holden
praba kar wrote: > --- Sybren Stuvel > <[EMAIL PROTECTED]> wrote: > > >>Steve Holden enlightened us with: >> >>>It's obvious you aren't using that EXACT code, >> >>because it doesn't >> >>>formulate a three-paragraph message. So the bit we >> >>really need to >> >>>see is how you capture and form

Re: reg email packages work

2005-08-30 Thread praba kar
--- Sybren Stuvel <[EMAIL PROTECTED]> wrote: > Steve Holden enlightened us with: > > It's obvious you aren't using that EXACT code, > because it doesn't > > formulate a three-paragraph message. So the bit we > really need to > > see is how you capture and formulate the argument > to set_payload()

Re: reg email packages work

2005-08-30 Thread Steve Holden
Sybren Stuvel wrote: > Steve Holden enlightened us with: > >>It's obvious you aren't using that EXACT code, because it doesn't >>formulate a three-paragraph message. So the bit we really need to >>see is how you capture and formulate the argument to set_payload(). > > > I'd rather see what I ask

Re: reg email packages work

2005-08-30 Thread Sybren Stuvel
Steve Holden enlightened us with: > It's obvious you aren't using that EXACT code, because it doesn't > formulate a three-paragraph message. So the bit we really need to > see is how you capture and formulate the argument to set_payload(). I'd rather see what I asked for, which is the output of ms

Re: reg email packages work

2005-08-29 Thread Steve Holden
praba kar wrote: > Dear All, > >I am working in web based email system project. > Here I try to build email message > from scratch. I used below code to build email > message > >msg = email.MIMEBase('text','html') >msg['Return-Path'] = user+'@'+domain >msg['Date'] = formatdat

reg email packages work

2005-08-29 Thread praba kar
Dear All, I am working in web based email system project. Here I try to build email message from scratch. I used below code to build email message msg = email.MIMEBase('text','html') msg['Return-Path'] = user+'@'+domain msg['Date'] = formatdate(localtime=1) msg['Subject'] = s