python 发送邮件函数代码示例(smtplib模块发邮件)

发布时间:2020-12-05编辑:脚本学堂
python使用smtplib模块发送邮件的例子,python自带的库smtplib发邮件,这是python实现邮件发送代码最常用的方法了。

专题教程:python发送邮件实例教程

python自带库smtplib发送邮件

代码:
 

复制代码 代码示例:
def send_email(sender,receiver,subject,content,smtpserver,username,password):
    import smtplib 
    from email.mime.text import MIMEText 
    from email.header import Header 
    msg = MIMEText(content,'html','utf-8')
    msg['Subject'] = Header(subject, 'utf-8') 
    smtp = smtplib.SMTP() 
    smtp.connect(smtpserver) 
    smtp.login(username, password) 
    smtp.sendmail(sender, receiver, msg.as_string()) 
    smtp.quit()