
bbxx789_05ss at yahoo
May 17, 2008, 6:58 PM
Post #4 of 4
(2798 views)
Permalink
|
|
Re: smtplib "authentication required" error
[In reply to]
|
|
On May 17, 12:18 pm, cher <cheryl.gi...@comcast.net> wrote: > Hey, > > Don't know if you can help, but I'm trying to import archived messages > from Thunderbird into my gmail account and keep getting these types of > errors. I am using the GML program to help incorporate, but the SMTP > server is not being recognized by gmail. Am I doing something wrong? > Anything else I can try? > SMTP I've tried: > smtp.gmail.com > gsmtp56.google.com > > Error Val : (530, '5.7.0 Must issue a STARTTLS command first. > m29sm9416768poh.4', > *** 76 ERROR SENDING MESSAGE FROM: r...@bassisloadeddj.com > *** UNABLE TO CONNECT TO SERVER OR SEND MESSAGE. ERROR FOLLOWS. > Error Type: smtplib.SMTPSenderRefused > Error Val : (530, '5.7.0 Must issue a STARTTLS command first. > n22sm9448670pof.3', 'r...@bassisloadeddj.com') > > Thanks, > Cher Can you get the following program to work? #Uses gmail to send an email to someone import smtplib sender = "Tom" to = "Sally" subject = "Test smtplib" headers = "From: %s\r\nTo: %s\r\nSubject: %s\r\n\r\n" % (sender, to, subject) msg = headers + "Hello. How are you?" mailserver = smtplib.SMTP("smtp.gmail.com", 587) mailserver.ehlo() mailserver.starttls() mailserver.ehlo() mailserver.login("your_gmail_email_address", "your_gmail_password") mailserver.sendmail("your_gmail_email_addres", "a_destination_email_address", msg) mailserver.close() -- http://mail.python.org/mailman/listinfo/python-list
|