在电子邮件中发送用Python保存的PDF文件可以通过以下步骤实现:
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email import encoders
msg = MIMEMultipart()
msg['From'] = 'sender@example.com'
msg['To'] = 'recipient@example.com'
msg['Subject'] = 'PDF File'
filename = 'path/to/pdf/file.pdf'
attachment = open(filename, 'rb')
part = MIMEBase('application', 'octet-stream')
part.set_payload((attachment).read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', "attachment; filename= %s" % filename)
msg.attach(part)
server = smtplib.SMTP('smtp.example.com', 587)
server.starttls()
server.login('sender@example.com', 'password')
text = msg.as_string()
server.sendmail('sender@example.com', 'recipient@example.com', text)
server.quit()
请注意,上述代码中的smtp.example.com
应替换为您所使用的SMTP服务器地址,sender@example.com
和recipient@example.com
应替换为发件人和收件人的电子邮件地址,path/to/pdf/file.pdf
应替换为实际的PDF文件路径,password
应替换为发件人的邮箱密码。
这是一个基本的示例,您可以根据自己的需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云