这里使用 的是Python 中的 smtplib
模块来实现发送电子邮件。以下是一个简单的示例代码,演示如何使用给定的信息发送电子邮件:
python
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
# 你的邮箱信息
sender_email = "sender@example.com"
sender_password = "123456"
# 收件人信息
receiver_email = "recipient@example.com"
# 邮件内容
subject = "测试邮件"
body = "这是一封来自 Python 的测试邮件。"
# 创建邮件对象
message = MIMEMultipart()
message["From"] = sender_email
message["To"] = receiver_email
message["Subject"] = subject
# 添加邮件内容
message.attach(MIMEText(body, "plain"))
# 连接 SMTP 服务器
with smtplib.SMTP_SSL("smtp.exmail.qq.com", 465) as server:
server.login(sender_email, sender_password)
# 发送邮件
server.sendmail(sender_email, receiver_email, message.as_string())
print("邮件发送成功!")
在这个示例中,我们使用了 smtplib
模块连接到了 QQ 邮箱的 SMTP 服务器,并发送了一封简单的邮件。你需要将 recipient@example.com
替换为你要发送邮件的收件人的地址,并确保你的 QQ 邮箱允许通过 SMTP 发送邮件(有时需要在 QQ 邮箱的设置中启用)。
另外,请注意在实际应用中要注意安全问题,不要将敏感信息硬编码在代码中,最好通过环境变量或者配置文件来管理,最好将上述示例代码根据业务场景封装成一个工具类。