发邮件
Posted python学到老
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了发邮件相关的知识,希望对你有一定的参考价值。
def email():
import smtplib
from email.mime.text import MIMEText
from email.utils import formataddr
msg=MIMEText(‘老婆,我爱你‘,‘plain‘,‘utf-8‘)
msg[‘From‘]=formataddr([‘tf‘,‘[email protected]‘])
msg[‘To‘]=formataddr([‘vvv‘,‘[email protected]‘])
msg[‘Subject‘]=‘主题‘
server=smtplib.SMTP_SSL(‘smtp.qq.com‘,465)
server.login("[email protected]","xxxxxx")
server.sendmail(‘[email protected]‘,[‘[email protected]‘,],msg.as_string())
server.quit()
email()
以上是关于发邮件的主要内容,如果未能解决你的问题,请参考以下文章