为了账号安全,请及时绑定邮箱和手机立即绑定

python 发送邮件

标签:
Python

#!/usr/bin/env python
#coding:utf-8

import smtplib,time,string
from email.mime.text import MIMEText

SMTPserver = 'smtp.exmail.qq.com'  # 腾讯企业邮箱
sender = 'xxx'   # 发件人邮箱
password = "xxx"   #发件人smtp客户端登陆密码
To = '1210577423@qq.com'    # 收件人邮箱

message = string.join((
'from ', sender,
'to', To ,
'I send a message by python hello ',
),"\r\n")   # 构造邮件内容

msg = MIMEText(message)
msg['Subject'] = 'test email to python'   # 邮件主题
msg['From'] = sender  
msg['To'] = ' xxx ' #destination  # 收件人邮箱

mailserver = smtplib.SMTP(SMTPserver,25)
mailserver.login(sender,password)
mailserver.sendmail(sender,[To],msg.as_string())
mailserver.quit()

print ' send email success '

with open('/var/log/email.log','a') as f:
date=time.strftime("%y-%m-%d %H:%M:%S")
str=date + " " + To +  message + '\n'
f.write(str)   # 记录邮件内容

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消