python发送信息到邮箱

import smtplib
from email.mime.text import MIMEText

设置服务器所需信息

163邮箱服务器地址

mail_host = 'smtp.163.com'

163用户名

mail_user = '***@163.com'

密码(部分邮箱为授权码)

mail_pass = '*****'

邮件发送方邮箱地址

sender = '***@163.com'

邮件接受方邮箱地址,注意需要[]包裹,这意味着你可以写多个邮件地址群发

receivers = ['968@qq.com']

设置email信息

邮件内容设置a

message = MIMEText('content','plain','utf-8')

邮件主题

message['Subject'] = 'title'

发送方信息

message['From'] = sender

接受方信息

message['To'] = receivers[0]

登录并发送邮件

try:
smtpObj = smtplib.SMTP()
#连接到服务器
smtpObj.connect(mail_host,25)
#登录到服务器
smtpObj.login(mail_user,mail_pass)
#发送
smtpObj.sendmail(
sender,receivers,message.as_string())
#退出
smtpObj.quit()
print('success')
except smtplib.SMTPException as e:
print('error',e) #打印错误

posted on 2019-01-15 07:57  lukelin1989  阅读(372)  评论(0编辑  收藏  举报

导航