要實現Python的收發郵件功能,可以使用Python的內置模塊smtplib和email。
首先,你需要導入這兩個模塊:
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.header import Header
接下來,你需要設置發送方和接收方的郵箱信息:
# 發件人郵箱
sender = 'sender@example.com'
# 收件人郵箱
receivers = ['receiver1@example.com', 'receiver2@example.com']
然后,你需要創建郵件內容和郵件對象:
# 創建一個帶附件的郵件對象
message = MIMEMultipart()
message['From'] = Header("發件人名稱", 'utf-8')
message['To'] = Header("收件人名稱", 'utf-8')
message['Subject'] = Header("郵件標題", 'utf-8')
# 郵件正文內容
message.attach(MIMEText('郵件正文', 'plain', 'utf-8'))
# 附件內容
att = MIMEText(open('附件文件路徑', 'rb').read(), 'base64', 'utf-8')
att["Content-Type"] = 'application/octet-stream'
att["Content-Disposition"] = 'attachment; filename="附件文件名"'
message.attach(att)
接下來,你需要登錄發件人郵箱服務器,并發送郵件:
try:
smtpObj = smtplib.SMTP('smtp.example.com', 25)
smtpObj.login('發件人郵箱用戶名', '發件人郵箱密碼')
smtpObj.sendmail(sender, receivers, message.as_string())
print("郵件發送成功")
except smtplib.SMTPException:
print("Error: 無法發送郵件")
以上代碼中的一些信息,比如發件人郵箱、收件人郵箱、發件人郵箱用戶名、發件人郵箱密碼等都需要根據實際情況進行替換。
注意:在發送郵件之前,請確保你已經安裝了Python的smtplib和email模塊,你可以使用pip install smtplib email
命令來進行安裝。