python通过邮件服务器端口发送邮件的方法( 二 )


app.add_header('Content-Disposition', 'attachment', filename=file_path.split('/')[-1])
msg.attach(app)
# 发送邮件
smtp.sendmail(from_addr, to_addr, msg.as_string())
# 退出邮件服务器
smtp.quit()
```
五、总结
Python通过邮件服务器端口发送邮件是一种快捷、简便、自主的邮件发送方式 。通过本文的介绍,我们了解了Python发送邮件的基本流程和Python通过邮件服务器端口发送邮件的步骤,同时也了解了Python发送邮件的优势和注意事项 。希望本文能够对大家有所帮助 。

推荐阅读