Python中Exchange发邮件

559次阅读
没有评论

Python中Exchange发邮件

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.com',
        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.com","主题",message)
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-04-27发表,共计1035字。
新手QQ群:570568346,欢迎进群讨论 Python51学习