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 = '[email protected]' >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 = '[email protected]' > >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 = '[email protected]' >g> # for more mail add';' the another mail id >g> listTo = ['[email protected]', '[email protected]', >g> '[email protected]

Re: problem in using sendmail in multi thread

2009-05-05 Thread Aahz
In article <[email protected]>, 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 ([email protected]) <*> 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 = '[email protected]' # for more mail add';' the another mail id listTo = ['[email protected]', '[email protected]', '[email protected]'] SUBJECT = 'This is the subject' MSGBODY = 'This the body