我正在尝试遍历我的电子邮件框,并找到包含特定主题的电子邮件.我在用:
import win32com.client
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6) # "6" refers to the index of a folder - in this case,
# the inbox. You can change that number to reference
# any other folder
messages = inbox.Items
message = messages.GetLast()
print(message)
body_content = message.body
print body_content
有谁知道我在哪里可以找到有关此文档的信息.我想使用GetAll()函数,然后按主题或getSubject()函数进行过滤,但是我根本找不到关于此的文档.任何帮助都会很棒.
解决方法:
我发现Google对“ Microsoft Interop”的搜索使我很快找到了正确的页面集.在您的情况下,我执行了“ microsoft interop outlook getdefaultfolder”,这使我进入了MSDN的NameSpaceClass.GetDefaultFolder Method页面,这使我(单击几次之后)进入了Items Members页面.
我对所有MS Office应用程序使用相同的搜索技术.