**變化如下:
#收件人使用列表進行儲存
receives=[』 [email protected] 『,』 [email protected] 『,[email protected]』]
#在字典中新增收件人時,使用』,'逗號將多個人分割,使用.join方法新增收件人
msg[『to』]=』,』.join(receives)
完整**如下:
#coding=utf-8
import smtplib
from email.mime.text import mimetext
from email.header import header
#郵箱伺服器
smtpserver=
'smtp.163.com'
#登入郵件的使用者名稱和密碼
user=
'summer***[email protected]'
password=
'準備階段獲取到的客戶端授權碼'
#收件人和發件人
sender=
'summer***[email protected]'
receives=
['******[email protected]'
,'***[email protected]'
]#郵件的主題和正文
subject=
'selenium 自動化測試'
content=
''#構造郵件
msg=mimetext(content,
'html'
,'utf-8'
)msg[
'subject'
]=header(subject,
'utf-8'
)msg[
'from'
]=sender
msg[
'to']=
','.join(receives)
#傳送郵件
smtp=smtplib.smtp_ssl(smtpserver,
465)
#和伺服器傳送連線請求
smtp.helo(smtpserver)
#確認伺服器的返回
smtp.ehlo(smtpserver)
#登入郵箱
smtp.login(
'summer***[email protected]'
,'在準備階段獲取到的客戶端授權碼'
)print
"傳送郵件"
#傳送郵件
smtp.sendmail(sender,receives,msg.as_string())
smtp.quit(
)print
"郵件傳送完成"
Python Selenium環境搭建
安裝python 設定 python 的環境變數 安裝目錄 安裝目錄 scripts 使用 pip安裝 selenium pip install selenium 安裝完python pip工具,在安裝目錄的 scripts 目錄下。在 dos下直接執行 pip install selenium 即...
Python Selenium 學習筆記
1 判斷元素是否存在 try driver.find element.xx a true except a false if a true print 元素存在 elif a false print 元素不存在 2 判斷元素是否顯示 driver.find element by id outputb...
Python Selenium錯誤小結
因為要使用web應用,所以開始用起了,selenium包,安裝倒是挺容易的,但就是出了很多bug。filenotfounderror winerror 2 系統找不到指定的檔案。通過錯誤反饋發現是要把該軟體加到路徑裡面,但是,設定了系統環境變數後發現還是不行,最後,使用了乙個非常原始的方法 brow...