我正在尝试从发送到 Outlook 电子邮件的电子邮件中获取一些信息。我已成功连接到 Exchange Server,并且能够从带有附件的电子邮件中检索一些信息(我正在跳过不带附件的电子邮件)。
我有什么:我可以检索附件文件名、电子邮件日期和电子邮件主题。
我需要什么:我还需要检索发件人姓名和电子邮件。根据我所做的,我可以检索电子邮件的正文(以 HTML 格式),但不能仅检索正文(需要 Exchange 2013 - Hello MS 广告)。
我是 C# 新手,今天是我第一次连接到 Exchange Server。我从阅读中注意到,“查找”在它可以获得的内容方面是有限的,并且我需要绑定消息才能从电子邮件中获取更多信息。
到目前为止的代码:
foreach (Item item in findResults.Items)
if (item.HasAttachments) // && item.Attachments[0] is FileAttachment)
{
item.Load();
FileAttachment fileAttachment = item.Attachments[0] as FileAttachment;
date = Convert.ToString(item.DateTimeCreated);
name = Convert.ToString(fileAttachment.Name);
fileAttachment.Load("C:\\test\\" + fileAttachment.Name);
Console.WriteLine(name);
Console.WriteLine(item.Subject);
Console.WriteLine(date);
}
我的问题是,如果我执行 EmailMessage msg = EmailMessage.Bind ... 我需要什么信息才能获取更多信息?