摘要: mail.py 1 #encoding=utf-8 2 3 import sys 4 import time 5 import email 6 import smtplib 7 import poplib 8 9 def send_mail():10 try:11 handle = smtplib.SMTP('smtp.163.com',25)12 handle.login('???@163.com','your password')13 msg = 'To:??@qq.com\r\nFrom:??@163.com\r\nSubjec.. 阅读全文
posted @ 2012-12-29 09:25 Alexander.liu 阅读(1110) 评论(0) 推荐(0) 编辑