可附加附件
作為 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中文網其他相關文章!