python#模拟发送电子邮件

Posted 健康一贴灵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python#模拟发送电子邮件相关的知识,希望对你有一定的参考价值。

 1 #-*- coding:utf-8 -*-
 2 #模拟发送电子邮件
 3 from email.mime.text import MIMEText
 4 
 5 
 6 from_addr = [email protected]
 7 password = input(Passord:)
 8 to_addr = [email protected]
 9 
10 smtp_server = mail.lingrui.com
11 
12 context =  为此次峰会互动提供了礼品支持,冬
13 
14 msg = MIMEText(context,plain,utf-8)
15 msg[Subject]=Python send mail
16 msg[From] = from_addr
17 
18 import smtplib
19 
20 server = smtplib.SMTP(smtp_server,25)
21 server.set_debuglevel(1)
22 server.login(from_addr,password)
23 server.sendmail(from_addr,[to_addr],msg.as_string())
24 server.quit()
25 
26 print(邮件发送至 %s 成功 %to_addr)

 

以上是关于python#模拟发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

用python实现自动发邮件的功能

python 模拟126邮箱发送邮件

Python 向 Postman 请求代码片段

使用C#模拟Outlook发送邮件,代码编译报错

用python模拟登录(解析cookie + 解析html + 表单提交 + 验证码识别 + excel读写 + 发送邮件)

Javascript - 使用 HTML 片段通过电子邮件发送 JSON 输出