给老婆写一个程序,祝福她生日快乐
时间: 2024-02-06 09:11:31 浏览: 79
生日祝福程序
好的,以下是一个简单的Python程序,可以帮您向您的妻子发送生日祝福:
```python
import smtplib
from email.mime.text import MIMEText
# 设置发送方的邮箱地址和密码,需要开启SMTP服务和POP3/IMAP服务获取授权码
sender = 'your_email@example.com'
password = 'your_email_password'
# 设置接收方的邮箱地址
receiver = 'your_wife_email@example.com'
# 设置邮件的主题和内容
subject = '生日快乐'
content = '亲爱的,祝你生日快乐,幸福美满!'
# 创建一个MIMEText对象,并设置邮件的内容和格式
message = MIMEText(content, 'plain', 'utf-8')
message['Subject'] = subject
message['From'] = sender
message['To'] = receiver
# 发送邮件
try:
smtpObj = smtplib.SMTP('smtp.example.com', 25)
smtpObj.login(sender, password)
smtpObj.sendmail(sender, receiver, message.as_string())
print("邮件发送成功")
except smtplib.SMTPException as e:
print("Error: 无法发送邮件,", e)
```
请将 `your_email@example.com` 和 `your_email_password` 替换为您的真实邮箱地址和密码,将 `your_wife_email@example.com` 替换为您妻子的邮箱地址,然后运行程序即可发送生日祝福邮件给您的妻子。
阅读全文