#!/usr/bin/python
# -*- coding: UTF-8 -*-
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.mime.multipart import MIMEMultipart
from email.mime.application import MIMEApplication
# 第三方 SMTP 服务
mail_host = "smtp.huawei.com" # 设置服务器
mail_user = "#####" # 用户名
mail_pass = "#####" # 口令
sender = 'chenjunliang1@huawei.com'
receivers = ['chenjunliang1@huawei.com'] # 接收邮件,可设置为你的QQ邮箱或者其他邮箱
#初始化附件
partPath = "D:\\PythonTest\\一次做好PPT.docx"
partName = "一次做好PPT.docx"
onePart = MIMEApplication(open(partPath, 'rb').read())
onePart.add_header('Content-Disposition', 'attachment', filename = '%s'%partName)
message = MIMEMultipart();
#message = MIMEText('Python 邮件发送测试...', 'plain', 'utf-8')
#message['From'] = Header("", 'utf-8')
#message['To'] = Header("测试", 'utf-8')
message.attach(onePart)
subject = 'Python SMTP 邮件测试'
message['Subject'] = Header(subject, 'utf-8')
try:
smtpObj = smtplib.SMTP()
smtpObj.connect(mail_host, 25) # 25 为 SMTP 端口号
smtpObj.login(mail_user, mail_pass)
smtpObj.sendmail(sender, receivers, message.as_string())
print("邮件发送成功")
except smtplib.SMTPException:
print("Error: 无法发送邮件")