python发送邮件(入门)
1.配置邮箱,需要开启smtp协议才能通过代码运行。开启时会给你一个邀请码,这个需要记住。
2.安装相应的模块,博主使用的pycharm直接在设置中导入SMTPEmail模块就行。接下来编写一个简单的脚本上手。如下图。
import smtplib
from email.mime.text import MIMEText
mail_host='smtp.126.com' #这个不同的邮箱中间部分需要修改下
mail_user='hu****124' #发送邮箱的用户名
mail_pass='***********' #发送邮箱的邀请码
sender='***@126.com' #发件人邮箱地址
receiver='****@qq.com' #收件人邮箱地址
content=('认真努力') #发送内容
title='我太难了' #发送标题
message=MIMEText(content,'plain','utf-8')
message['Form'] = sender
message['To'] = receiver
message['Subject'] = title
try:
a=smtplib.SMTP_SSL(mail_host,465) #连接
a.login(mail_user,mail_pass) #登录
a.sendmail(sender,receiver,message.as_string()) #发送邮件
print('发送成功')
except smtplib.SMTPException:
print('发送失败')