Re: problem in using sendmail in multi thread

2009-05-06 Thread gganesh
On May 6, 7:10 pm, Jean-Paul Calderone wrote: > On Tue, 5 May 2009 22:17:35 -0700 (PDT), gganesh wrote: > >On May 5, 9:25 pm, Piet van Oostrum wrote: > >> > gganesh (g) wrote: > >> >g> hi, > >> >g> I'm a beginner in using Python script > >> >g> I'm trying to send mails using multi-thread >

Re: problem in using sendmail in multi thread

2009-05-06 Thread Jean-Paul Calderone
On Tue, 5 May 2009 22:17:35 -0700 (PDT), gganesh wrote: On May 5, 9:25 pm, Piet van Oostrum wrote: > gganesh (g) wrote: >g> hi, >g> I'm a beginner in using Python script >g> I'm trying to send mails using multi-thread >g> I wrote >g> FROM = 'ganeshx...@.com' >g> # for more mail add';'

Re: problem in using sendmail in multi thread

2009-05-05 Thread gganesh
On May 5, 9:25 pm, Piet van Oostrum wrote: > > gganesh (g) wrote: > >g> hi, > >g> I'm a beginner in using Python script > >g> I'm trying to send mails using multi-thread > >g> I wrote > >g> FROM = 'ganeshx...@.com' > >g> # for more mail add';' the another mail id > >g> listTo = ['g@gm

Re: problem in using sendmail in multi thread

2009-05-05 Thread Piet van Oostrum
> gganesh (g) wrote: >g> hi, >g> I'm a beginner in using Python script >g> I'm trying to send mails using multi-thread >g> I wrote >g> FROM = 'ganeshx...@.com' >g> # for more mail add';' the another mail id >g> listTo = ['g@gmail.com', 'xxjango...@gmail.com', >g> 'xx...@yahoo.co.in

Re: problem in using sendmail in multi thread

2009-05-05 Thread Aahz
In article <343747e9-549f-4336-9b15-522411a78...@x1g2000prh.googlegroups.com>, gganesh wrote: > >I'm a beginner in using Python script >I'm trying to send mails using multi-thread You need a separate SMTP connection for each thread. -- Aahz (a...@pythoncraft.com) <*> http://ww

problem in using sendmail in multi thread

2009-05-05 Thread gganesh
hi, I'm a beginner in using Python script I'm trying to send mails using multi-thread I wrote FROM = 'ganeshx...@.com' # for more mail add';' the another mail id listTo = ['g@gmail.com', 'xxjango...@gmail.com', 'xx...@yahoo.co.in'] SUBJECT = 'This is the subject' MSGBODY = 'This the body