使用Python发送邮件,可以使用smtplib库。下面是一个示例代码:
```python
import smtplib
from email.mime.text import MIMEText
# 设置邮件内容
msg = MIMEText('这是一封测试邮件', 'plain', 'utf-8')
msg['From'] = 'sender@example.com' # 发件人邮箱
msg['To'] = 'recipient@example.com' # 收件人邮箱
msg['Subject'] = '测试邮件' # 邮件主题
# 发送邮件
smtp_server = 'smtp.example.com' # SMTP服务器地址
smtp_port = 25 # SMTP服务器端口
smtp_username = 'sender@example.com' # SMTP服务器用户名
smtp_password = 'password' # SMTP服务器密码
try:
smtp_obj = smtplib.SMTP(smtp_server, smtp_port)
smtp_obj.login(smtp_username, smtp_password)
smtp_obj.sendmail(msg['From'], msg['To'], msg.as_string())
print('邮件发送成功')
except smtplib.SMTPException as e:
print('邮件发送失败:', e)
```
请注意,需要将示例代码中的邮件服务器地址、端口、发件人邮箱、收件人邮箱、用户名和密码替换为实际的信息。