我正在使用EWS(Exchange Web Service)C#。
我想发送一封带有我自己身份证的电子邮件,并从邮件中读取我自己的身份证。
我尝试了什么(发送消息):
EmailMessage email = new EmailMessage(_service);
email.Subject = "Title"
email.Body = new MessageBody("Message Body.");
//Trying with category
email.Categories.Add("123456");//Test
//Trying with Property
// Get the GUID for the property set.
Guid MyPropertySetId = new Guid("{C11FF724-AA03-4555-9952-8FA248A11C3E}");
// Create a definition for the extended property.
ExtendedPropertyDefinition extendedPropertyDefinition = new ExtendedPropertyDefinition(MyPropertySetId, "123324", MapiPropertyType.String);
email.SetExtendedProperty(extendedPropertyDefinition, "TestTEst");
//Send the mail
email.Send();
在我尝试阅读电子邮件后,我无法看到类别/ extendproperty,为什么会发生这种情况?我需要“保存”我添加的属性吗?
由于