码迷,mamicode.com
首页 > 编程语言 > 详细

python-发送邮件

时间:2014-12-25 17:43:09      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

来自:http://www.cnblogs.com/lonelycatcher/archive/2012/02/09/2343463.html#commentform

  • #!/usr/bin/env python3 
  • #coding: utf-8 
  • import smtplib 
  • from email.mime.text import MIMEText 
  • from email.header import Header 
  •  
  • sender = ‘***‘ 
  • receiver = ‘***‘ 
  • subject = ‘python email test‘ 
  • smtpserver = ‘smtp.163.com‘ 
  • username = ‘***‘ 
  • password = ‘***‘ 
  •  
  • msg = MIMEText(‘你好‘,‘text‘,‘utf-8‘)#中文需参数‘utf-8’,单字节字符不需要 
  • msg[‘Subject‘] = Header(subject, ‘utf-8‘
  •  
  • smtp = smtplib.SMTP()
  • smtp.connect(‘smtp.163.com‘
  • smtp.login(username, password) 
  • smtp.sendmail(sender, receiver, msg.as_string()) 
  • smtp.quit()

目前只是过这种。

python-发送邮件

标签:

原文地址:http://www.cnblogs.com/gxhlog/p/4184839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!