Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Office Outlook (2010) 中有一个共享/组邮箱,其中包含许多子文件夹(根据应用程序名称),除了我的个人收件箱。当邮件进入共享收件箱时,共享邮箱有时会变得超载,我们有规则将特定邮件移动到其相应的子文件夹。
任何人都可以帮助我提供一些 VBA 代码,它将向我发送(报告类型)子文件夹名称和大小的详细信息,并据此我们将采取相应的行动(如删除/存档等)
当您引用共享邮箱中的文件夹而不是 ns.GetDefaultFolder(olFolderInbox).Folders(targetFolder)
ns.GetDefaultFolder(olFolderInbox).Folders(targetFolder)
试试这个更通用的格式
ns.Folders("name of shared mailbox").Folders("Inbox").Folders(targetFolder)