Python: 有谁知道 msg Outlook 文件的接收邮件日期参数吗?

Python: Does any one knows the Received mail date Parameter for msg Outlook file?

我正在使用 python 解析 msg(Outlook 邮件)文件。我发现到目前为止我所做的代码中显示的属性数量,

我为此做了以下代码,

import win32com.client
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
msg = outlook.OpenSharedItem(r"C:\test_msg.msg")
print msg.SenderName
print msg.SenderEmailAddress
print msg.SentOn
print msg.To
print msg.CC
print msg.BCC
print msg.Subject
print msg.Body

我希望收到数据而不是发送日期。有谁知道,我必须使用哪个属性而不是 msg.SendOn?

使用MailItem.ReceivedTime属性。