Hello,
I’ve faced the issue that the first number is omitted when I set body content for MapiMessage with BodyContentType.HTML
, which is wrong.
So, for the following code:
MapiMessage message = new MapiMessage();
message.setBodyContent("123 456", BodyContentType.Html);
message.getBody();
Expected result is "123 456"
Actual result is "456"
Please, have a look at this issue.
Thanks!