EWSを使用して交換メールを取得しますが、HTMLなしでメール本文からプレーンテキストを取得するにはどうすればよいですか?
今、私はこれを使用しています:
EmailMessage item = (EmailMessage)outbox.Items[i];
item.Load();
item.Body.Text
アイテムの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);
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()
同じ問題がありました。必要なのは、使用しているプロパティセットのRequestedBodyTypeプロパティを設定することだけです。
PropertySet propSet = new PropertySet(BasePropertySet.IdOnly, EmailMessageSchema.Subject, EmailMessageSchema.Body);
propSet.RequestedBodyType = BodyType.Text;
var email = EmailMessage.Bind(service, item.Id, propSet);
最短の方法は次のとおりです。
item.Load(new PropertySet(BasePropertySet.IdOnly, ItemSchema.TextBody, EmailMessageSchema.Body));
これには、text-bodyとhtml-bodyの両方を取得できるという利点があります。
使用できます
service.LoadPropertiesForItems(findResults, itempropertyset);
すべてのアイテムのプロパティをロードする