gpt4 book ai didi

c# - 在 c# 中创建/打开从路径到新 Outlook.MailItem 的现有消息

转载 作者:行者123 更新时间:2023-11-30 20:08:41 25 4
gpt4 key购买 nike

您好,我想从磁盘上现有的一个创建一个 Outlook.MailItem(我相信)。我将路径存储在一个字符串中,并希望访问以从中保存正文和附件。

我似乎无法弄清楚如何在 C# 中打开它并访问它。

目前我有一些类似的东西

其中 fl 的计算结果类似于“C:\users\msgs\email.msg”

谢谢你的时间

Outlook.Application app = new Outlook.Application();

try
{

foreach (String fl in Directory.GetFiles(docInfo.LocalPath + _preprocessorDirectory))
{
if (Regex.IsMatch(fl.Trim(), _regex, RegexOptions.IgnoreCase))
{

Outlook.MailItem email = new Outlook.MailItem(fl);
SaveAttachments(email);
SaveBody(email);
}
}
}
catch (Exception ex)
{
logger.Error("Error in Process for document " + docInfo.OriginalPath, ex);
callback.Invoke(docInfo, false);
}
return false;

最佳答案

要在 Outlook 中打开一个项目,请尝试:

var email = (Outlook.MailItem)app.Session.OpenSharedItem(fl)

从那里,您还可以访问 Attachments 属性和 Body 属性。

此外,正如我在评论中提到的,如果 Regex.IsMatch 用于确定文件扩展名,请使用 Path.GetExtension()相反

关于c# - 在 c# 中创建/打开从路径到新 Outlook.MailItem 的现有消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6848789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com