我在outlook中有2个邮箱(abc@er.com和def@er.com),需要连接到特定邮箱。默认情况下,Python的win32com.client连接到错误的。
是否有参数指定要连接的邮箱?我的代码是:
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6)
messages = inbox.Items
我已经非常努力地找到哪些参数允许我连接到特定邮箱但没有看到任何内容。谢谢你的帮助。
答案 0 :(得分:1)
您应该能够枚举邮箱:
for folder in outlook.Folders:
print(folder.Name)