1
我有下面的代碼,它可以閱讀我Outlook收件箱中最新的電子郵件並打印該郵件的正文。但是,我希望能夠指定一個靜態電子郵件地址,並返回該人的所有消息。我將如何更改代碼來做到這一點?如何在Python中搜索特定的Outlook電子郵件
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6)
messages = inbox.Items
message = messages.Getlast
body_content = message.body
print body_content
我想這將是爲改變「messages.Getlast」的東西像「messages.Get(」電子郵件地址在這裏「),但沒有運氣那麼簡單。
在此先感謝您的幫助。