将 Outlook 2007 邮件文件夹和子文件夹导出到 csv
将邮件从 Outlook 2007 文件夹导出到 CSV 文件的最佳方法是什么?我也想在子文件夹中包含邮件消息。内置的 csv 导出器不允许包含子文件夹的选项,但在其他方面正是我想要的。
What's the best way to export mail from an Outlook 2007 folder to a CSV file? I would like to include mail messages within subfolders as well. The built in csv exporter does not allow the option to include subfolders but otherwise does exactly what i want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说办公自动化是通往这里的出路..
如果您安装了 Excel,则可以直接将属性插入工作表上的单元格中。您可以在 Excel 中编写宏以自动化 Outlook,也可以在 Outlook 中编写宏以将数据推送到工作表中。
下面我为 Outlook 创建了一个快速的 VBA 片段,并使用 FSO 来完成这些肮脏的工作,它将为您提供一个工作框架,它将需要更多的错误处理测试等。
Marcus
I would say that Office Automation is the way to go here ..
If you have Excel installed you can directly insert the properties into the Cells on a worksheet. You could write a macro in Excel to automate outlook or you could write a macro in outlook to push the data into a worksheet.
Below I have created a quick piece of VBA for outlook and used FSO to do the dirty work instead, It will give you a skeleton to work from, it will need a lot more error handling testing etc.
Marcus