On Sat Dec 27 2014 at 1:23:12 AM Vincent Vande Vyvre <
vincent.vande.vy...@telenet.be> wrote:
Try with the TLS:

Many thanks, working like a charm, code:

server = smtplib.SMTP('smtp.mail.ru')
server.starttls()
server.ehlo()
server.login('SENDER EMAIL GOES HERE', 'PASSWD GOES HERE')
server.sendmail(fromaddr, toaddrs, msg)
server.quit()
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to