2

Programatically using Java, is it possible to download and save emails from Exchange Server as .msg files?

If not, are there any formats possible, which can be opened with Outlook

4

3 回答 3

2

收到的解决方案是商业选项,对我来说现在超出了范围。我问题的第二部分是我是否可以以任何其他格式保存。我发现我可以将它们保存为 .eml 文件,该文件也可以在 Outlook 中打开。这将为我解决问题。

于 2013-04-26T05:43:25.480 回答
1

JWebServices for Exchange > 教程 > 将消息下载为 .msg 文件

于 2013-04-26T05:37:40.597 回答
1

如果您将本地 Outlook 配置文件配置为访问相关 Exchange 邮箱,则可以使用 Outlook 对象模型(请参阅 MailItem.SaveAs)。

您还可以使用Redemption动态连接到 Exchange 邮箱 ( RDOSession .LogonExchangeMailbox),遍历邮件并将它们保存为 MSG 格式 ( RDOMail .SaveAs)。

于 2013-04-25T16:43:19.210 回答