I'm working on a simple mail app and I need to get the body of a message. MSDN says, version 1.1 of JavaScript API for Office has body
property for message
object and it can be get like this:
Office.context.mailbox.item.body;
but the problem is that I need to access the body
in read mode
and MSDN states that:
Read mode: The body property is undefined.
Why is the body
property undefined
in read mode
and How can I access it? (if possible)