python Python - 发送电子邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python - 发送电子邮件相关的知识,希望对你有一定的参考价值。

import smtplib

sender = 'im@here.it'
receivers = ['reciver@mandi.it']

message = """Ciao"""

smtpObj = smtplib.SMTP('smtp.gmail.com:587')
smtpObj.ehlo()
smtpObj.starttls()
smtpObj.login([user], [password])
smtpObj.sendmail(sender, receivers, message)
print("Successfully sent email")

以上是关于python Python - 发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

python 发送邮件,附件中文命名,怎么破

python发送邮件(转)

Python 发送邮件

如何用python通过163发送邮件

python 发送邮件

python发送邮件