常用邮箱SMTP服务器地址和端口")常用邮箱SMTP服务器地址和端口
sina.com:
POP3服务器地址:pop3.sina.com.cn(端口:110)
SMTP服务器地址:smtp.sina.com.cn(端口:25)
sinaVIP:
POP3服务器:pop3.vip.sina.com (端口:110)
SMTP服务器:smtp.vip.sina.com (端口:25)
sohu.com:
POP3服务器地址:pop3.sohu.com(端口:110)
SMTP服务器地址:smtp.sohu.com(端口:25)
126邮箱:
POP3服务器地址:pop.126.com(端口:110)
SMTP服务器地址:smtp.126.com(端口:25)
139邮箱:
POP3服务器地址:POP.139.com(端口:110)
SMTP服务器地址:SMTP.139.com(端口:25)
163.com:
POP3服务器地址:pop.163.com(端口:110)
SMTP服务器地址:smtp.163.com(端口:25)
QQ邮箱
POP3服务器地址:pop.qq.com(端口:110)
SMTP服务器地址:smtp.qq.com (端口:25)
QQ企业邮箱
POP3服务器地址:pop.exmail.qq.com (SSL启用 端口:995)
SMTP服务器地址:smtp.exmail.qq.com(SSL启用 端口:587/465)
yahoo.com:
POP3服务器地址:pop.mail.yahoo.com
SMTP服务器地址:smtp.mail.yahoo.com
yahoo.com.cn:
POP3服务器地址:pop.mail.yahoo.com.cn(端口:995)
SMTP服务器地址:smtp.mail.yahoo.com.cn(端口:587)
HotMail
POP3服务器地址:pop3.live.com (端口:995)
SMTP服务器地址:smtp.live.com (端口:587)
gmail(google.com)
POP3服务器地址:pop.gmail.com(SSL启用 端口:995)
SMTP服务器地址:smtp.gmail.com(SSL启用 端口:587)
263.net:
POP3服务器地址:pop3.263.net(端口:110)
SMTP服务器地址:smtp.263.net(端口:25)
263.net.cn:
POP3服务器地址:pop.263.net.cn(端口:110)
SMTP服务器地址:smtp.263.net.cn(端口:25)
x263.net:
POP3服务器地址:pop.x263.net(端口:110)
SMTP服务器地址:smtp.x263.net(端口:25)
21cn.com:
POP3服务器地址:pop.21cn.com(端口:110)
SMTP服务器地址:smtp.21cn.com(端口:25)
Foxmail:
POP3服务器地址:POP.foxmail.com(端口:110)
SMTP服务器地址:SMTP.foxmail.com(端口:25)
china.com:
POP3服务器地址:pop.china.com(端口:110)
SMTP服务器地址:smtp.china.com(端口:25)
tom.com:
POP3服务器地址:pop.tom.com(端口:110)
SMTP服务器地址:smtp.tom.com(端口:25)
etang.com:
POP3服务器地址:pop.etang.com
SMTP服务器地址:smtp.etang.com
一. yagmail邮件发送库使用详解
使用python标准库进行邮件的处理比较复杂,所以产生了yagmail,但是yagmail目前只能用SMTP协议进行邮件发送,并不能读取邮件,也不支持其他的邮件相关协议,但是对于一般使用完全够了。
1. 连接邮箱服务器
yag = yagmail.SMTP( user="from_user@126.com", password="1234", host='smtp.126.com')
如果不想将我们的密码暴露下脚本文件中,yagmail使用keyring模块将密码存放在系统keyring服务中。关于keyring是什么,请看:What does a Keyring do?
官方文档中,
yagmail.register('mygmailusername', 'mygmailpassword')
实际上是对keyring.set_password('yagmail', 'mygmailusername', 'mygmailpassword')
的封装。
SMTP()
方法会去用户主文件夹读取.yagmail
文件,但是以上操作并不会生成这个文件,所以需要自己创建,并将自己的邮箱写入文件中。
例如,我测试过程中写入.yagmail
文件中的内容为:cbj_love@126.com
而之前我已经通过register()
方法将该邮箱的密码保存到了系统keyring中,所以接下来就可以初始化一个SMTP客户端。
另外还需要注意的是,经过测试,163邮箱很容易将邮件识别为垃圾邮件,导致邮件发送错误,而qq邮箱需要关闭邮件保护,其他邮箱没有测试,这里推荐使用qq邮箱。
yagmail.SMTP()
默认使用的gmail的SMTP服务,所以我们如果使用qq邮箱,则使用如下代码初始化一个SMTP客户端
2. 发送邮件
yag.send('to_user@163.com', '邮件主题', '这是邮件内容')
# 发给多个用户
yag.send(['aa@126.com','bb@qq.com','cc@gmail.com'], 'subject', contents)
# 发送附件邮件
yag.send('aaaa@126.com', '发送附件', contents, ["d://log.txt","d://baidu_img.jpg"])
注意send()
方法的定义:
如果不指定to
参数,则发送给自己,如果to
参数是一个列表,则将该邮件发送给列表中的所有用户,attachments
表示附件,该参数可以是列表,表示发送多个附件
对于contents
参数,官方说明如下:
- If it is a dictionary it will assume the key is the content and the value is an alias (only for images currently!) e.g. {‘/path/to/image.png’ : ‘MyPicture’}
- It will try to see if the content (string) can be read as a file locally, e.g. ‘/path/to/image.png’
- if impossible, it will check if the string is valid html e.g.
This is a big title
- if not, it must be text. e.g. ‘Hi Dorika!’