使用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邮箱发送邮件并添加附件的主要内容,如果未能解决你的问题,请参考以下文章

使用python发送QQ邮件,以及添加附件

使用python发送QQ邮件,以及添加附件

官网发邮箱激活能不能拦截邮件信息

用JAVA发送邮件,正文乱码该如何解决

在QQ邮箱中怎么发已经做好报表的邮件给他人,谢谢

.Net 自带System.Net.Mail.MailMessage发送邮件乱码问题