可附加附件
作为 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中文网其他相关文章!