在 Outlook 中获取/打开邮件附件
我正在尝试找到一种方法来获取邮件附件(以编程方式),然后打开它...有人可以告诉我如何执行此操作或为我指出正确的方向吗?
I'm trying to find a way to get mail attachments (programaticaly) , and then open it... can someone tell me how to do this or point me to a right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个 VBA 脚本(在 Outlook 中的宏中使用),它将循环遍历当前文件夹中所有选定项目中的所有附件并将它们保存到磁盘。
它应该可以帮助您开始,并且我认为添加某种流程启动而不是向其保存逻辑并不需要太多。
This is a VBA script (use in a Macro in Outlook) which will loop over all attachments in all selected items in the current folder and Save them to disk.
It should get you started and I don't think it would take much to add some kind of process launch rather than save logic to it.
查找 Outlook 的 COM 引用。
您还可以使用用 vba 编写的宏来执行此操作。
Look for the COM-reference of Outlook.
You can also use a macro written in vba to do this.