首頁 > 後端開發 > Python教學 > 如何使用 Python 輕鬆將文件附加到電子郵件?

如何使用 Python 輕鬆將文件附加到電子郵件?

Patricia Arquette
發布: 2024-12-11 21:12:12
原創
214 人瀏覽過

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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板