首页 > 编程语言 > 详细

python 发送文本文件小程序!

时间:2017-02-17 22:16:37      阅读:224      评论:0      收藏:0      [点我收藏+]

献上python小程序一枚,不成敬意!


#!/usr/bin/python

#coding=utf-8

import time

import email

import smtplib

from email.mime.text import MIMEText


date=time.strftime(‘%Y-%m-%d  %H:%M:%S‘,time.localtime())

sender=‘xxxxxxxx@163.com‘

receiver=‘874247458@qq.com‘

subject="Python 调试!!!"

username=‘xxxxxxxx@163.com‘

sendserver=‘smtp.163.com‘

password=‘************‘


msg=MIMEText(‘你好,欢迎使用Python!\n   --苍狼牧\n         %s‘%date)

msg[‘subject‘]=subject

msg[‘from‘]=sender

msg[‘receiver‘]=receiver


smtp=smtplib.SMTP()

smtp.connect(sendserver)

smtp.login(username,password)

smtp.sendmail(sender,receiver,msg.as_string())

smtp.quit()

print ‘OK!‘



输出OK!即执行完毕,邮件发送成功!

本文出自 “全球互联云主机Q874247458” 博客,请务必保留此出处http://gosweet.blog.51cto.com/11759495/1898799

python 发送文本文件小程序!

原文:http://gosweet.blog.51cto.com/11759495/1898799

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!