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

python trojan development 1st —— use python to send mail

时间:2019-02-25 13:15:09      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:mail   import   dev   send   quit   .text   发送   class   rom   

 1 import smtplib
 2 from email.mime.text import MIMEText
 3 msg_from=1@qq.com                                 #发送方邮箱
 4 passwd=bd                                   #填入发送方邮箱的授权码
 5 msg_to=1@qq.com
 6 
 7 
 8 subject="python邮件测试"                                     #主题
 9 content="这是我使用python smtplib及email模块发送的邮件"
10 msg = MIMEText(content)
11 msg[Subject] = subject
12 msg[From] = msg_from
13 msg[To] = msg_to
14 try:
15     s = smtplib.SMTP_SSL("smtp.qq.com",465)
16     s.login(msg_from, passwd)
17     s.sendmail(msg_from, msg_to, msg.as_string())
18     print( "发送成功")
19 except:
20     print("发送失败")
21 finally:
22     s.quit()

 

python trojan development 1st —— use python to send mail

标签:mail   import   dev   send   quit   .text   发送   class   rom   

原文地址:https://www.cnblogs.com/pwn2web/p/10430330.html

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