博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PYTHON发送邮件时,有的服务器不用密码认证的
阅读量:6316 次
发布时间:2019-06-22

本文共 1126 字,大约阅读时间需要 3 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/python
# coding: UTF-8
 
import
smtplib
from
email.mime.text
import
MIMEText
 
 
receivers_list
=
[
"chengang@example.com"
,]
#mail_host="dns.com"
mail_host
=
"1.2.3.4"
sender_email
=
"send@bat.com"
#mail_pwd="*************" //有的需要,有的不需要
  
  
def
send_email(subject, content, receivers_list):
    
print
'Setting MIMEText'
    
msg
=
MIMEText(content.encode(
'utf8'
), _subtype
=
'html'
, _charset
=
'utf8'
)
    
msg[
'From'
]
=
sender_email
    
msg[
'Subject'
]
=
u
'%s'
%
subject
    
msg[
'To'
]
=
","
.join(receivers_list)
 
    
try
:
        
# s = smtplib.SMTP_SSL(mail_host, 465) //有的需要,有的不需要
        
s
=
smtplib.SMTP(mail_host,
25
)
        
# s.connect(mail_host) //和上面的连接任选一种
        
#s.set_debuglevel(1)
        
#s.ehlo() //有的需要,有的不需要
        
#s.starttls() //有的需要,有的不需要
        
#s.ehlo()
        
#s.login(mail_user, mail_pwd) //有的需要,有的不需要
 
        
s.sendmail(sender_email, receivers_list, msg.as_string())
 
        
print
'close the connection between the mail server'
        
s.close()
    
except
Exception as e:
        
print
'Exception: '
, e
 
if
__name__
=
=
'__main__'
:
    
send_email(
"subject title"
,
'email content'
, receivers_list)

转载地址:http://okyaa.baihongyu.com/

你可能感兴趣的文章
AspNetPager控件的最基本用法
查看>>
sessionKey
查看>>
高性能Javascript--脚本的无阻塞加载策略
查看>>
Java 编程的动态性, 第4部分: 用 Javassist 进行类转换--转载
查看>>
完毕port(CompletionPort)具体解释 - 手把手教你玩转网络编程系列之三
查看>>
iOS8 Push Notifications
查看>>
各大名企笔试及面经大全(程序猿必读)
查看>>
Oracle 连接、会话数的查看,修改
查看>>
英语学习的重要性
查看>>
ffmpeg参数具体解释
查看>>
记一次公司仓库数据库服务器死锁过程
查看>>
Oracle 11g password过期被锁定报道 ORA-28000 the account is locked
查看>>
轨磁条简介
查看>>
NSQ部署
查看>>
唯品会HDFS性能挑战和优化实践
查看>>
大厂前端高频面试问题与答案精选
查看>>
我们用5分钟写了一个跨多端项目
查看>>
Visual Studio 15.4发布,新增多平台支持
查看>>
有赞透明多级缓存解决方案(TMC)设计思路
查看>>
如何设计高扩展的在线网页制作平台
查看>>