Re: Send email notification

2006-03-08 Thread Peter Hansen
Dennis Lee Bieber wrote: > On Wed, 08 Mar 2006 06:20:42 +, Steve Holden <[EMAIL PROTECTED]> > declaimed the following in comp.lang.python: > >>Hang around here long and you'll see a bunch of people waiting on >>replies to questions Google could have given them far quicker. If we >>weren't pa

Re: Send email notification

2006-03-08 Thread Christos Georgiou
On Wed, 08 Mar 2006 06:20:42 +, rumours say that Steve Holden <[EMAIL PROTECTED]> might have written: > If we >weren't paid thousands of dollars a week to answer questions on this >list we'd probably get snarky more often. Steve, please, don't make me look like a liar in front of the childr

Re: Send email notification

2006-03-08 Thread Grant Edwards
On 2006-03-08, Steve Holden <[EMAIL PROTECTED]> wrote: > Hang around here long and you'll see a bunch of people waiting > on replies to questions Google could have given them far > quicker. If we weren't paid thousands of dollars a week to > answer questions on this list we'd probably get snarky m

Re: Send email notification

2006-03-08 Thread Laurent Pointal
Ernesto a écrit : > Is there a special module for mail ? > > I'd like to send an email [to 'n' unique email addresses] from a python > script. If you want all adressee to be the only one visible in to: field, you must send n emails. For such a purpose, see iMailer module here: http://

Re: Send email notification

2006-03-07 Thread Steve Holden
Ernesto wrote: > I guess that was jerk-off version of: > > "smtplib" > > Thanks a lot. > Well, it gave you the information you wanted, right? (Except that it might have mentioned the "email" package, which would help you formulating the messages as well. But that which doesn't kill us makes u

Re: Send email notification

2006-03-07 Thread rtilley
Ernesto wrote: > Is there a special module for mail ? > > I'd like to send an email [to 'n' unique email addresses] from a python > script. from email.MIMEText import MIMEText import email.Utils import smtplib # 'users' is a list of email addys. for u in users: try

Re: Send email notification

2006-03-07 Thread Larry Bates
Ernesto wrote: > Is there a special module for mail ? > > I'd like to send an email [to 'n' unique email addresses] from a python > script. > > Thanks ! > This class makes what you want to do extremely easy. http://motion.sourceforge.net/related/send_jpg.py -Larry Bates -- http://mail.pytho

Re: Send email notification

2006-03-07 Thread Ernesto
I guess that was jerk-off version of: "smtplib" Thanks a lot. -- http://mail.python.org/mailman/listinfo/python-list

Re: Send email notification

2006-03-07 Thread Laszlo Zsolt Nagy
Ernesto wrote: >Is there a special module for mail ? > >I'd like to send an email [to 'n' unique email addresses] from a python >script. > > http://www.justfuckinggoogleit.com/search.pl?python+smtp -- http://mail.python.org/mailman/listinfo/python-list

Send email notification

2006-03-07 Thread Ernesto
Is there a special module for mail ? I'd like to send an email [to 'n' unique email addresses] from a python script. Thanks ! -- http://mail.python.org/mailman/listinfo/python-list