在Python中,你可以使用email
模块来发送带有附件的电子邮件。下面是一个示例代码,展示了如何将图像附加到电子邮件中:
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.image import MIMEImage
# 邮件信息
sender_email = "your_email@example.com"
receiver_email = "recipient_email@example.com"
subject = "附带图像的邮件"
message = "这是一封带有图像附件的邮件。"
# 创建邮件对象
msg = MIMEMultipart()
msg["From"] = sender_email
msg["To"] = receiver_email
msg["Subject"] = subject
# 添加邮件正文
msg.attach(MIMEText(message, "plain"))
# 添加图像附件
with open("image.jpg", "rb") as f:
image_data = f.read()
image = MIMEImage(image_data, name="image.jpg")
msg.attach(image)
# 发送邮件
smtp_server = "smtp.example.com"
smtp_port = 587
smtp_username = "your_username"
smtp_password = "your_password"
with smtplib.SMTP(smtp_server, smtp_port) as server:
server.starttls()
server.login(smtp_username, smtp_password)
server.send_message(msg)
print("邮件发送成功!")
在上面的代码中,你需要将以下信息替换为你自己的信息:
sender_email
:发件人的电子邮件地址receiver_email
:收件人的电子邮件地址subject
:邮件的主题message
:邮件的正文内容image.jpg
:要附加的图像文件名smtp_server
:SMTP服务器地址smtp_port
:SMTP服务器端口号smtp_username
:SMTP服务器的用户名smtp_password
:SMTP服务器的密码请确保你的电子邮件账户已经配置好,并且允许使用SMTP协议发送邮件。此外,你还需要安装smtplib
库来发送邮件。
这是一个简单的示例,你可以根据自己的需求进行修改和扩展。希望对你有帮助!
领取专属 10元无门槛券
手把手带您无忧上云