我使用EWS来获取交换电子邮件,但是如何从电子邮件正文中获取纯文本,而不使用HTML? 现在我用这个:
EmailMessage item = (EmailMessage)outbox.Items[i];
item.Load();
item.Body.Text
答案 0 :(得分:64)
在项目的PropertySet中,您需要将RequestedBodyType设置为BodyType.Text。这是一个例子:
PropertySet itempropertyset = new PropertySet(BasePropertySet.FirstClassProperties);
itempropertyset.RequestedBodyType = BodyType.Text;
ItemView itemview = new ItemView(1000);
itemview.PropertySet = itempropertyset;
FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Inbox, "subject:TODO", itemview);
Item item = findResults.FirstOrDefault();
item.Load(itempropertyset);
Console.WriteLine(item.Body);
答案 1 :(得分:8)
在powershell中:
.........
$message = [Microsoft.Exchange.WebServices.Data.EmailMessage]::Bind($event.MessageData,$itmId)
$PropertySet = New-Object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties)
$PropertySet.RequestedBodyType = [Microsoft.Exchange.WebServices.Data.BodyType]::Text
$message.Load($PropertySet)
$bodyText= $message.Body.toString()
答案 2 :(得分:5)
我有同样的问题。您所要做的就是设置您正在使用的属性集的RequestedBodyType属性。
PropertySet propSet = new PropertySet(BasePropertySet.IdOnly, EmailMessageSchema.Subject, EmailMessageSchema.Body);
propSet.RequestedBodyType = BodyType.Text;
var email = EmailMessage.Bind(service, item.Id, propSet);
答案 3 :(得分:3)
你可以使用
service.LoadPropertiesForItems(findResults, itempropertyset);
加载所有项目的属性
答案 4 :(得分:1)
最简单的方法就是这样:
item.Load(new PropertySet(BasePropertySet.IdOnly, ItemSchema.TextBody, EmailMessageSchema.Body));
这样做的好处是可以同时获得text-body和html-body。