python 集成mailtrap.io - 普通python

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 集成mailtrap.io - 普通python相关的知识,希望对你有一定的参考价值。

import smtplib
from email.mime.text import MIMEText

msg = MIMEText('There was a terrible error that occured and I wanted you to know!')
msg['Subject'] = 'Hello world'
msg['From'] = 'from@example.com'
msg['To'] = 'to@example.com'

username = 'mailtrap.io username'
password = 'mailtrap.io password'

# The actual mail send
server = smtplib.SMTP('mailtrap.io', 2525)
server.starttls()
server.login(username,password)
server.sendmail('from@example.com', ['to@example.com'], msg.as_string())
server.quit()

以上是关于python 集成mailtrap.io - 普通python的主要内容,如果未能解决你的问题,请参考以下文章

智普教育Python培训之Python开发视频教程网络爬虫实战项目

如何在 laravel 中发送多个域的电子邮件

云原生数据湖元数据管理在滴普科技的实践

Matlab求解混沌系统最大李雅普诺夫指数

ODOO邮件发送集成

不甘寂寞的Jenkins:从持续集成到持续部署