Exchangelib库不以html格式下载电子邮件正文

问题描述 投票:1回答:1

我已经编写了使用exchangelib库下载MS Exchange服务器电子邮件正文作为html的代码,但它已经下载了没有<>括号的html内容

import datetime
from exchangelib import ServiceAccount, Account, Configuration, DELEGATE
from exchangelib import EWSDateTime, EWSTimeZone, EWSDate, 

server = 'server url'
username = 'username'
password= 'password'
credentials = ServiceAccount(username=username, password=password)
config = Configuration(server=server, credentials=credentials)
account = Account(
    primary_smtp_address='[email protected]',
    config=config, credentials=credentials,
    autodiscover=False,
    access_type=DELEGATE
)

# to fetch 6 days before emails
tz = EWSTimeZone.localzone()
end = tz.localize(EWSDateTime.combine(EWSDate.today(), datetime.time(0)))
start = end - datetime.timedelta(days=6)
for item in account.inbox.filter(datetime_received__range=(start, end)):
    emailbody = item.body
    with open('test.html', 'w', encoding='utf-8') as fdata:   
        fdata.write(emailbody)

预期结果:

<html><head>....</head></html>

实际产量:

html head .../head /html
python exchangelib
1个回答
0
投票

这可能就是从服务器接收正文的方式。如果你enable debug logging,你可以看到身体实际上是什么样子。

© www.soinside.com 2019 - 2024. All rights reserved.