在R中读取Outlook邮件

时间:2013-08-16 06:52:45

标签: r tm

我已尝试过一些方法通过R(BSON)中的MongoDb读取Outlook邮件,但没有成功,因为PST的BSON在R中不可读(#I使用了readBin())然后我尝试直接在R中读取它 tm.plugin.mail 但收到错误: -

 library(tm.plugin.mail)
 convert_mbox_eml("C:\\Users\\XYZ\\Documents\\Outlook Files\\Outlook Data File - Abc.pst","C:\\tm")
 Warning message:
 In readLines(mbox) :
 incomplete final line found on 'C:\Users\Kuldeep\Documents\Outlook Files\Outlook Data File - Ashish.pst'

这个库对于tm只是插件,或者我们可以在R中读出来自PST的邮件,是否有任何方法可以在R中读出邮件,请尽快帮助我。谢谢。

1 个答案:

答案 0 :(得分:4)

help(convert_mbox_eml)说:

Convert E-Mails From mbox Format To eml Format

您没有mbox格式。您有Outlook PST格式。您可能能够以mbox格式从Outlook导出。或者您可能会找到一个实用程序来进行转换。但是那个包中的任何内容都无法帮助你。