91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python3 發送任意文件郵件的實例

發布時間:2020-10-25 10:48:30 來源:腳本之家 閱讀:128 作者:zhishiqu 欄目:開發技術

實例如下所示:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import smtplib
import email.mime.multipart
import email.mime.text
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.application import MIMEApplication

def send_email(smtpHost, sendAddr, password, recipientAddrs, subject='', content=''):
 msg = email.mime.multipart.MIMEMultipart()
 msg['from'] = sendAddr
 msg['to'] = recipientAddrs
 msg['subject'] = subject
 content = content
 txt = email.mime.text.MIMEText(content, 'plain', 'utf-8')
 msg.attach(txt)


 # 添加附件,傳送D:/mydev/yasuo.rar文件
 part = MIMEApplication(open('D:/mydev/6.rar','rb').read())
 part.add_header('Content-Disposition', 'attachment', filename="yasuo.rar")
 msg.attach(part)

 smtp = smtplib.SMTP()
 smtp.connect(smtpHost, '25')
 smtp.login(sendAddr, password)
 smtp.sendmail(sendAddr, recipientAddrs, str(msg))
 print("發送成功!")
 smtp.quit()

try:

subject = 'Python 測試郵件'
content = '這是一封來自 Python 編寫的測試郵件。'
send_email('smtp.163.com', '18310161797@163.com', '郵箱密碼', '526189064@qq.com', subject, content)
except Exception as err:
print(err)

以上這篇python3 發送任意文件郵件的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贡山| 铁岭县| 利辛县| 时尚| 沁水县| 健康| 马边| 肃南| 阿尔山市| 龙泉市| 隆林| 自治县| 黄龙县| 濮阳县| 房产| 南通市| 海口市| 汤原县| 武汉市| 微博| 宁武县| 定安县| 大关县| 彰武县| 十堰市| 内乡县| 沂水县| 商城县| 垦利县| 翁源县| 南岸区| 襄樊市| 郎溪县| 玉田县| 黄陵县| 九龙城区| 乌什县| 曲靖市| 鹿邑县| 桦甸市| 张家川|