以下是一个使用Python发送邮件的示例:
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
# 设置发件人、收件人、主题和正文
sender = "your_email@example.com"
receiver = "recipient_email@example.com"
subject = "Test Email"
body = "This is a test email."
# 创建一个MIMEMultipart对象
msg = MIMEMultipart()
msg['From'] = sender
msg['To'] = receiver
msg['Subject'] = subject
# 添加正文
msg.attach(MIMEText(body, 'plain'))
# 添加附件
filename = "test.txt"
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)
# 连接到SMTP服务器
smtp_server = "smtp.example.com"
smtp_port = 587
smtp_username = "your_email@example.com"
smtp_password = "your_password"
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(smtp_username, smtp_password)
# 发送邮件
server.sendmail(sender, receiver, msg.as_string())
# 关闭SMTP服务器连接
server.quit()
在这个示例中,我们首先导入了smtplib
、MIMEMultipart
、MIMEText
、MIMEBase
和encoders
模块。然后,我们设置了发件人、收件人、主题和正文。接下来,我们创建了一个MIMEMultipart
对象,并设置了发件人、收件人和主题。然后,我们添加了正文,并添加了一个附件。最后,我们连接到SMTP服务器,发送邮件,并关闭SMTP服务器连接。
注意,你需要将smtp_server
、smtp_port
、smtp_username
和smtp_password
替换为你的SMTP服务器地址、端口、用户名和密码。此外,你需要将sender
和receiver
替换为你的发件人和收件人的电子邮件地址。