我正在尝试使用win32com从Outlook打印电子邮件。唯一的问题是,当我尝试访问MailItem.SentOn
或MailItem.ReceivedTime
时,Python崩溃,并显示“ Python停止工作”对话框窗口。造成此问题的原因是什么?
这是我的代码:
import win32com
import win32com.client
import os
import sys
import re
from datetime import datetime
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
accounts = win32com.client.Dispatch("Outlook.Application").Session.Accounts
inbox = outlook.Folders(accounts[0].DeliveryStore.DisplayName)
folders = inbox.Folders
inbox_messages = folders("Inbox").Items
msg = inbox_messages.GetFirst()
while msg:
print(msg.SenderEmailAddress)
print(msg.Subject)
print (msg.SentOn)
msg = inbox_messages.GetNext()
我正在Windows 10上使用Office 365和Python 3.7.0。
答案 0 :(得分:1)
我有同样的问题。我的脚本在Python 3.6.5中工作正常,但在3.7.0中失败
答案 1 :(得分:0)
因此并非所有邮件都具有SenderEmailAddress和SentOn。 我在收件箱中尝试了您的程序,但它似乎在Outlook生成的邮件上崩溃了-Outlook生成的无法投递的邮件:
Your message to xxxx@xxxx.com couldn't be delivered.
A custom mail flow rule created by an admin at xxx.onmicrosoft.com has blocked your message.
。
Traceback (most recent call last):
File "xxxx\outl.py", line 24, in <module>
print (msg.SentOn)
File "xxx\lib\site-packages\win32com\client\dynamic.py", line 527, in __getattr__
raise AttributeError("%s.%s" % (self._username_, attr))
AttributeError: GetNext.SentOn
不知道为什么它会为您崩溃python,但对我来说却是堆栈崩溃,但我认为您应该处理可能会丢失属性的情况。