shell
摘要: import smtplib from email.mime.text import MIMEText from email.header import Header # 发送邮箱服务器 smtpserver = 'smtp.sina.com' # 发送邮箱用户/密码 user = 'username@sina.com' password = '123456' # 发送邮箱 sender = ... 阅读全文
posted @ 2018-02-05 15:28 devops运维 阅读(203) 评论(0) 推荐(0) 编辑
python