How to send an email with Gmail as provider using Python?

后端 未结 14 1996
感情败类
感情败类 2020-11-22 03:29

I am trying to send email (Gmail) using python, but I am getting following error.

Traceback (most recent call last):  
File \"emailSend.py\", line 14, in <         


        
14条回答
  •  忘掉有多难
    2020-11-22 03:33

    import smtplib
    server = smtplib.SMTP('smtp.gmail.com', 587)
    server.ehlo()
    server.starttls()
    server.login("fromaddress", "password")
    msg = "HI!"
    server.sendmail("fromaddress", "receiveraddress", msg)
    server.quit()
    

提交回复
热议问题