自動發送郵件python
# -*- coding: utf-8 -*- import smtplib # 發送字符串的郵件 from email.mime.text import MIMEText # 處理多種形態的郵件主體咱們須要 MIMEMultipart 類 # 設置服務器所需信息 fromaddr = '76887800@qq.com' # 郵件發送方郵箱地址 password = 'jqkjerduknvjbjbb' # 密碼(部分郵箱爲受權碼) toaddrs = ['a76887800@163.com',] # 郵件接受方郵箱地址,注意須要[]包裹,這意味着你能夠寫多個郵件地址羣發 # 設置email信息 # ---------------------------發送字符串的郵件----------------------------- # 郵件內容設置 message = MIMEText('腳本測試郵件', 'plain', 'utf-8') # 郵件主題 message['Subject'] = 'test email' #---------------------------登陸併發送郵件------------------------------- try: server = smtplib.SMTP('smtp.qq.com') # qq郵箱服務器地址 server.login(fromaddr, password) server.sendmail(fromaddr, toaddrs, message.as_string()) print('success') server.quit() except smtplib.SMTPException as e: print('error', e)