雜項之使用qq郵箱發送郵件
本節內容
- 特殊設置
- 測試代碼
1. 特殊設置
以前QQ郵箱直接能夠經過smtp協議發送郵件,不須要進行一些特殊的設置,可是最近使用QQ郵箱測試的時候發現之前使用的辦法沒法奏效了。。。因而上網查了查,QQ對這方面作了一些限制,必須使用受權碼才能登錄郵箱。官方連接在這:
http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256
按照上面的官方文檔配置好以後就可使用QQ郵箱發送郵件了,下面是使用方法。python
2. 測試代碼
from email.mime.text import MIMEText
from email.header import Header
from smtplib import SMTP_SSL
import random
class Send_email:
def __init__(self,mail_host="smtp.qq.com",mail_user="123456789@qq.com # 這裏填的是你的發件箱的郵箱名",mail_pass="這裏填的不是郵箱密碼,而是開啓服務後的16位受權碼"):
self.mail_host=mail_host
self.mail_user=mail_user
self.mail_pass=mail_pass
def send_mail(self,email):
random_str="".join([str(random.randint(0,9)) for i in range(6)])
mailInfo = {
"from":self.mail_user,
"to": email,
"hostname":"smtp.qq.com",
"username":self.mail_user,
"password":self.mail_pass,
"mailsubject":"註冊驗證碼",
"mailtext":random_str,
"mailencoding":"utf-8"
}
msg=MIMEText(mailInfo["mailtext"])
msg['Subject']=Header(mailInfo["mailsubject"],mailInfo["mailencoding"])
msg["from"] = mailInfo["from"]
msg["to"] = mailInfo["to"]
server = SMTP_SSL(mailInfo["hostname"])
server.set_debuglevel(1)
server.ehlo(mailInfo["hostname"])
server.login(self.mail_user, self.mail_pass)
server.sendmail(mailInfo["from"], mailInfo["to"], msg.as_string())
server.quit()
if __name__ == "__main__":
obj=Send_email()
obj.send_mail("987654321@qq.com")