Re: SMTP via GMAIL

2008-09-19 Thread Grant Edwards
On 2008-09-19, Steve Holden <[EMAIL PROTECTED]> wrote: > Grant Edwards wrote: >> On 2008-09-18, Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: >>> In message >>> <[EMAIL PROTECTED]>, sui >>> wrote: >>> Traceback (most recent call last): File "mail5.py", line 21, in session = s

Re: SMTP via GMAIL

2008-09-19 Thread Steve Holden
Grant Edwards wrote: > On 2008-09-18, Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: >> In message >> <[EMAIL PROTECTED]>, sui >> wrote: >> >>> Traceback (most recent call last): >>> File "mail5.py", line 21, in >>> session = smtplib.SMTP(SMTPserver,port) >>> File "/usr/local/lib/python2.5

Re: SMTP via GMAIL

2008-09-18 Thread Chris Babcock
> >> Traceback (most recent call last): > >> File "mail5.py", line 21, in > >> session = smtplib.SMTP(SMTPserver,port) > >> File "/usr/local/lib/python2.5/smtplib.py", line 244, in __init__ > >> (code, msg) = self.connect(host, port) > >> File "/usr/local/lib/python2.5/smtplib.py",

Re: SMTP via GMAIL

2008-09-17 Thread Grant Edwards
On 2008-09-18, Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: > In message ><[EMAIL PROTECTED]>, sui > wrote: > >> Traceback (most recent call last): >> File "mail5.py", line 21, in >> session = smtplib.SMTP(SMTPserver,port) >> File "/usr/local/lib/python2.5/smtplib.py", line 244, in __ini

Re: SMTP via GMAIL

2008-09-17 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, sui wrote: > Traceback (most recent call last): > File "mail5.py", line 21, in > session = smtplib.SMTP(SMTPserver,port) > File "/usr/local/lib/python2.5/smtplib.py", line 244, in __init__ > (code, msg) = self.connect(host, port) > File "/usr/local/li

Re: SMTP via GMAIL

2008-09-17 Thread sui
On Aug 7, 12:40 am, mmm <[EMAIL PROTECTED]> wrote: > On Aug 5, 12:18 am, Tim Roberts <[EMAIL PROTECTED]> wrote: > > > >But when using smtp.gmail.com as the server I learned that any > > >@gmail.com address in the Cc: text block would > > >receive mail even if I changed the code to have the RECEIVE

Re: SMTP via GMAIL

2008-08-06 Thread mmm
On Aug 5, 12:18 am, Tim Roberts <[EMAIL PROTECTED]> wrote: > >But when using smtp.gmail.com as the server I learned that any > >@gmail.com address in the  Cc: text block would > >receive mail even if I changed the code to have the RECEIVERS list to > >ignore the CC addresses or not include the gma

Re: SMTP via GMAIL

2008-08-04 Thread Tim Roberts
mmm <[EMAIL PROTECTED]> wrote: > >After reading about and using the smtplib module, I thought code such >as below would ignore the 'Cc: ' body line below when sending messages >and instead simply use the RECEIVERS list Correct. It is required by the SMTP spec to behave that way. >But when using

Re: SMTP via GMAIL

2008-08-02 Thread binaryjesus
i have a lot of experience in gmail. i use it to store 100GB's of server backup on it. the form: field will be equal to the gmail acc u login with. you are not clear with ur cc: so i cant offer any help on it. but u can include multiple addresses in the To: and use Bcc: since python doesnt inclu

SMTP via GMAIL

2008-08-02 Thread mmm
After reading about and using the smtplib module, I thought code such as below would ignore the 'Cc: ' body line below when sending messages and instead simply use the RECEIVERS list session = smtplib.SMTP(SMTPserver,port) session.set_debuglevel(1) session.ehlo(SMTPuser) # say hello session.start