摘要:
1 # -*- coding: utf-8 -*- 2 ''' 3 Created on 2014-02-17 10:41 4 @summary: send email 5 @author: leaf 6 ''' 7 8 import smtplib 9 from email.mime.text import MIMEText 10 11 # 收件人的邮箱地址, 一个或多个皆可,列表形式12 mailto_list=['****','*****'] 13 # 发送邮件的服务器14 mail_host="s 阅读全文