On Wed, 07 Jan 2009 15:47:25 +0100
Ole Henning Jensen wrote:
> Marco Petersen wrote:
> > I'm using Python 2.5.4. I wanted to try out the SMTP module. I
> > tried to send an email through my Gmail account but it keeps saying
> > that the connection was refused.
> > error: (10061, 'Connection refu
On 1/6/09, Marco Petersen wrote:
> I'm using Python 2.5.4. I wanted to try out the SMTP module. I tried to send
> an email through my Gmail account but it keeps saying that the connection
> was refused.
I used this example to get emailing from python through gmail smtp to work:
http://codecommen
Marco Petersen wrote:
I'm using Python 2.5.4. I wanted to try out the SMTP module. I tried to
send an email through my Gmail account but it keeps saying that the
connection was refused.
This is the code that I used :
import smtplib
msg = 'Test'
server = smtplib.SMTP('smtp.gmail.com')
server
On Tue, Jan 6, 2009 at 4:45 AM, Marco Petersen
wrote:
> I'm using Python 2.5.4. I wanted to try out the SMTP module. I tried to send
> an email through my Gmail account but it keeps saying that the connection
> was refused.
>
> This is the code that I used :
>
> import smtplib
> msg = 'Test'
>
>
>
Marco Petersen wrote:
I'm using Python 2.5.4. I wanted to try out the SMTP module. I tried to
send an email through my Gmail account but it keeps saying that the
connection was refused.
This is the code that I used :
import smtplib
msg = 'Test'
server = smtplib.SMTP('smtp.gmail.com')
server
I'm using Python 2.5.4. I wanted to try out the SMTP module. I tried to
send an email through my Gmail account but it keeps saying that the
connection was refused.
This is the code that I used :
import smtplib
msg = 'Test'
server = smtplib.SMTP('smtp.gmail.com')
server.set_debuglevel(1)
serv