国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

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

2020-02-22 22:58:14
字體:
來源:轉載
供稿:網友

實例如下所示:

#!/usr/bin/python# -*- coding: UTF-8 -*-import smtplibimport email.mime.multipartimport email.mime.textfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartfrom email.mime.application import MIMEApplicationdef 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 發送任意文件郵件的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 梅河口市| 芜湖县| 疏勒县| 厦门市| 白河县| 建德市| 麻江县| 青河县| 睢宁县| 青海省| 伽师县| 南安市| 南召县| 观塘区| 恩施市| 福州市| 通海县| 余干县| 中西区| 石楼县| 孙吴县| 紫金县| 余庆县| 南阳市| 西城区| 奉贤区| 三河市| 荔波县| 襄垣县| 陈巴尔虎旗| 刚察县| 麻栗坡县| 泽普县| 宜君县| 苍梧县| 鹤壁市| 大安市| 沙河市| 五指山市| 海口市| 闽侯县|