使用QQ邮箱发送邮件并添加附件
Posted ioswws
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用QQ邮箱发送邮件并添加附件相关的知识,希望对你有一定的参考价值。
def send_email(str):
fromaddr = ‘[email protected]‘ # 发送方邮箱
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邮箱发送邮件并添加附件的主要内容,如果未能解决你的问题,请参考以下文章