1、安装exchangelib库
pip3 install exchangelib
2、引入模块
exchangelib模块挺多的,其中Account, Credentials用来连接邮箱的,其他的根据你自身需求来吧,截图是所有模块:
3、连接邮箱
登录邮箱编码还是比较简单的:
credentials = Credentials('域名\用户名', '密码')
account = Account('邮箱', credentials=credentials, autodiscover=True)
编写调用exchangelib库,发送邮件
#Author Kang
from exchangelib import DELEGATE, Account, Credentials, Message, Mailbox, HTMLBody
def Email(to, subject, body):
creds = Credentials(
username='zhoumingkang',
password='帐号验证的密码'
)
account = Account(
primary_smtp_address='zhoumingkang@cedarhd测试数据',
credentials=creds,
autodiscover=True,
access_type=DELEGATE
)
m = Message(
account=account,
subject=subject,
body=HTMLBody(body),
to_recipients = [Mailbox(email_address=to)]
)
m.send()
cpu = 80
mem = 70
message = '''-----------运维报告------------<br>
CPU使用率:%s<br>
可用内存:%s<br>
''' %(cpu,mem)
Email("zhoumingkang@cedarhd测试数据","主题",message)以上就是Python中Exchange发邮件的方法,希望对大家有所帮助。 更多Python学习指路: python基础教程
查看更多关于Python中Exchange发邮件的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did255059