I use EWS to get exchange emails, but how can i get plain text from email body, without html? Now i use this:
EmailMessage item = (EmailMessage)outbox
The shortest way to do it is like this:
item.Load(new PropertySet(BasePropertySet.IdOnly, ItemSchema.TextBody, EmailMessageSchema.Body));
This has got the advantage that you get both, text-body and html-body.