码迷,mamicode.com
首页 > 其他好文 > 详细

使用QQ邮箱发送邮件并添加附件

时间:2018-12-05 20:53:00      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:dma   内容   position   name   email   int   附件   xxxxx   邮件服务器   

def send_email(str):
fromaddr = ‘xxxxxxxxx@qq.com‘ # 发送方邮箱
password = ‘xxxxxxxxx‘ # 填入发送方邮箱的授权码
toaddrs = [str] # 收件人邮箱

content = ‘最新生成内容‘
textApart = MIMEText(content)

zipFile = file_dir + ‘/aa_file.zip‘
zipApart = MIMEApplication(open(zipFile, ‘rb‘).read())
zipApart.add_header(‘Content-Disposition‘, ‘attachment‘, filename=‘QianBi.zip‘)

m = MIMEMultipart()
m.attach(textApart)
m.attach(zipApart)
m[‘Subject‘] = ‘千币分析‘

try:
s = smtplib.SMTP_SSL("smtp.qq.com", 465) # 邮件服务器及端口号
s.login(fromaddr, password)
s.sendmail(fromaddr, toaddrs, m.as_string())
print(‘success‘)
s.quit()
except smtplib.SMTPException as e:
print(‘error:‘, e)

if __name__ == ‘__main__‘:
send_email()

使用QQ邮箱发送邮件并添加附件

标签:dma   内容   position   name   email   int   附件   xxxxx   邮件服务器   

原文地址:https://www.cnblogs.com/ioswws/p/10072383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!