-1
我想了解如何使用Python發送電子郵件。使用來自Tutorial's Point和Stack Overflow的腳本,我創建了一個可以使用Gmail發送電子郵件的basic script。我有幾行關於幾行代碼的問題。他們似乎在與Gmail服務器通信。關於Python SMTP客戶端的困惑
server = smtplib.SMTP('smtp.gmail.com:587')
server.ehlo()
server.ehlo
是什麼意思?它是否特定於Gmail?
server.starttls()
這是什麼意思?
server.login(username,password)
server.sendmail(fromaddr, toaddrs, msg)
server.quit()
什麼是server.quit()
?
所有問題的答案在[smtplib文檔](http://docs.python.org/2/library/smtplib.html)中都有清楚的描述。 – jordanm