python模块-发送邮件
Posted Alive
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python模块-发送邮件相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# author:Sun
# make_time:2018/8/2
import smtplib
from email.mime.text import MIMEText
from email.utils import formataddr
def sendmail_2018():
msg = MIMEText('python', 'plain', 'utf-8') # 邮件内容、类型默认:plain、默认字符集
msg['From'] = formataddr(['python学院', '[email protected]']) # 发送方
msg['To'] = formataddr(['python', '[email protected]']) # 接收方
msg['Subject'] = 'python开发面试邀请' # 主题
server = smtplib.SMTP('smtp.163.com', 25) # 邮件服务器
server.login('邮箱', '密码') # 登陆
server.sendmail('[email protected]', ['[email protected]', '[email protected]', ], msg.as_string())
server.quit()
以上是关于python模块-发送邮件的主要内容,如果未能解决你的问题,请参考以下文章