码迷,mamicode.com
首页 > 其他好文 > 详细

非ssl给163发邮件,报错,无解ing

时间:2019-12-09 21:14:01      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:email   密码   发邮件   邮件   sendmail   邮件发送   sub   nbsp   com   

#给163发送邮件
import smtplib
from email.mime.text import MIMEText
nam=‘15527721040@163.com‘
send=‘15527721040@163.com‘
receive=‘371933505@qq.com‘
pw = ‘37193350d‘ #此密码有误,运行时需修改
server=‘smtp.163.com‘
port=0
message=MIMEText(‘<p>这是网页正文</p>‘,‘html‘,‘utf-8‘)
message[‘From‘]=‘xiatian‘
message[‘To‘]=‘dongtian‘
message[‘Subject‘]=‘big title‘
smtp=smtplib.SMTP()
smtp.connect(server,25)
smtp.login(nam,pw)
smtp.sendmail(send,receive,message.as_string())
smtp.quit()
print(‘邮件发送成功,请查收‘)

技术图片

 

 

非ssl给163发邮件,报错,无解ing

标签:email   密码   发邮件   邮件   sendmail   邮件发送   sub   nbsp   com   

原文地址:https://www.cnblogs.com/canglongdao/p/12013291.html

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