我有一个邮箱,每隔5分钟从远程站点接收一封自动电子邮件。该电子邮件中包含的字符串需要与前一封电子邮件中的相同字符串进行比较。
出于明显的原因,我试图使此过程自动化。
到目前为止,我已经能够阅读电子邮件中的ConversationTopic
,但是,我似乎还无法弄清楚如何阅读电子邮件中的内容。
当它称为:
email.Load();
MessageBox.Show(email.TextBody.Text.ToString());
我收到以下错误:
You must load or assign this property before you can read its value
我有一个Google,我找不到与我的实例相关的任何东西,因此任何帮助都将非常有用。
这是我到目前为止的完整代码:
private void Form1_Load(object sender, EventArgs e)
{
try
{
//MessageBox.Show("Registering Exchange connection");
_service = new ExchangeService
{
Credentials = new WebCredentials("myaddy@domain.com", "*****")
};
}
catch
{
MessageBox.Show("new ExchangeService failed.");
return;
}
// This is the office365 webservice URL
_service.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
// Prepare seperate class for writing email to the database
try
{
//MessageBox.Show("Reading mail");
// Read 100 mails
foreach (EmailMessage email in _service.FindItems(WellKnownFolderName.Inbox, new ItemView(10)))
{
if (email.ConversationTopic.ToString().Contains("from RockBLOCK 300234066454740"))
{
email.Load();
MessageBox.Show(email.TextBody.Text.ToString());
}
}
MessageBox.Show("Exiting");
}
catch (Exception ex)
{
MessageBox.Show("An error has occured. \n:" + ex.Message);
}
}
答案 0 :(得分:1)
由于您正在尝试读取属性Item.TextBody
,所以引发了异常。此属性不是first-class email property。
docs说:
并非所有重要的电子邮件属性和元素都是一流的 属性和元素。要获取其他属性或元素,您可以 如果您使用的是EWS托管服务,则需要将它们添加到您的
PropertySet
中 API,或使用属性路径将它们添加到您的EWS操作调用中。 例如,要检索文本正文...,请创建您的PropertySet
...
在您的情况下:
email.Load(new PropertySet(EmailMessageSchema.ConversationTopic, ItemSchema.TextBody));
使用此请求,EWS将会刷新并返回一个EmailMessage
,其中包含PropertySet
中的两个属性。
注意:
通过为您需要使用的属性指定PropertySet
,EWS可以更快地处理您的请求,因为它不必搜索所有一流的电子邮件属性。而且,在尝试读取不是first-class-email属性成员的属性时,不会出现这种错误。