python python脚本通过gmail发送电子邮件

Posted

tags:

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

def send_email(user, pwd, recipient, subject, body):
    import smtplib

    gmail_user = user
    gmail_pwd = pwd
    FROM = user
    TO = recipient if type(recipient) is list else [recipient]
    SUBJECT = subject
    TEXT = body

    # Prepare actual message
    message = """\From: %s\nTo: %s\nSubject: %s\n\n%s
    """ % (FROM, ", ".join(TO), SUBJECT, TEXT)
    try:
        server = smtplib.SMTP("smtp.gmail.com", 587)
        server.ehlo()
        server.starttls()
        server.login(gmail_user, gmail_pwd)
        server.sendmail(FROM, TO, message)
        server.close()
        print('successfully sent the mail')
    except:
        print("failed to send mail")

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

python & smtplib:是不是可以使用 oauth2 通过 gmail 发送邮件?

使用 telnet 发送的电子邮件,但不使用 SMTLIB python 脚本[组织邮件/不是 Gmail]

Python - 使用嵌入图像向 GMAIL 发送邮件

如何在 python 中向 Gmail-API 发送批处理请求?

使用 Python 从 Gmail 中提取信息

通过Python中的smtp.gmail.com在GAE上发送电子邮件