Simple:
I get this as MessageBody xItem.Body
:
"<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\nDies ist test nummer 3\r\n</body>\r\n</html>\r\n"
And I only need to save the content between <body>\r\n \r\n</body>
like:
m_Description = xItem.Body;
what's the easiest! way ?