当使用 Python 来发送母亲节祝福时,我们通常不会直接编写一个“页面”,而是编写
一个脚本来发送消息或电子邮件。下面是一个简单的 Python 脚本示例,它使用
smtplib 和 email.mime 模块来发送一封母亲节祝福的电子邮件。
Python 源码:
python
复制代码
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
# 设置 SMTP 服务器信息(以 Gmail 为例,但你需要使用自己的 SMTP 服务器信
息)
smtp_server = 'smtp.gmail.com'
smtp_port = 587
sender_email = 'your-email@gmail.com' # 你的邮箱地址
password = 'your-email-password' # 你的邮箱密码(或使用应用专用密码)
receiver_email = 'mom-email@example.com' # 妈妈的邮箱地址
# 创建邮件对象
msg = MIMEMultipart()
msg['From'] = sender_email
msg['To'] = receiver_email
msg['Subject'] = '母亲节快乐,妈妈!'
# 邮件内容
body = f"""
亲爱的妈妈:
母亲节快乐!感谢您一直以来的辛勤付出和无私的爱。愿您永远健康、快乐!
爱您的,
{sender_email.split('@')[0]}
"""
# 将邮件内容添加到邮件对象中
msg.attach(MIMEText(body, 'plain'))