首页 > 后端开发 > Python教程 > 如何使用 Python 轻松将文件附加到电子邮件?

如何使用 Python 轻松将文件附加到电子邮件?

Patricia Arquette
发布: 2024-12-11 21:12:12
原创
206 人浏览过

How Can I Easily Attach Files to Emails Using Python?

可附加附件

作为 Python 新手,将文件附加到电子邮件的前景可能令人望而生畏。让我们通过简单的理解来解决这个任务。

在 Python 中,smtplib 库通常用于发送电子邮件。要附加文件,我们可以利用 MIME(多用途互联网邮件扩展)模块。

下面的示例代码是完成此操作的简化方法:

import smtplib
from email.mime.application import MIMEApplication
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

# Define email details
sender = 'alice@example.com'
recipients = ['bob@example.org', 'carol@example.net']
subject = 'Hello from Python!'
text_body = 'This is the email body.'
files = ['file1.txt', 'file2.pdf']

# Create the email message
message = MIMEMultipart()
message['From'] = sender
message['To'] = ', '.join(recipients)
message['Subject'] = subject
message.attach(MIMEText(text_body))

# Attach files
for filename in files:
    with open(filename, 'rb') as f:
        attachment = MIMEApplication(f.read(), Name=filename)
    attachment['Content-Disposition'] = 'attachment; filename="%s"' % filename
    message.attach(attachment)

# Send the email
smtp = smtplib.SMTP('localhost')
smtp.sendmail(sender, recipients, message.as_string())
smtp.quit()
登录后复制

此代码使用 MIMEApplication 来附加文件到消息。 Content-Disposition 标头指定附件应作为单独的文件打开。

瞧,您现在可以放心地用 Python 发送电子邮件附件了。拥抱简单,让这些辅助功能让您的生活更轻松!

以上是如何使用 Python 轻松将文件附加到电子邮件?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板