Office 365 Outlook アドインでは、メソッドはOutlook MacOffice.context.mailbox.item.body.getAsync()
では機能しません。しかし、safariとchromeでは問題なく動作します。
Office js リファレンスは「https://appsforoffice.microsoft.com/lib/1/hosted/office.js」です。
これがアドイン読み取りアプリのコードです
var _item = Office.context.mailbox.item;
var body = _item.body;
// Get the body asynchronous as text
body.getAsync(Office.CoercionType.Text, function (asyncResult) {
if (asyncResult.status !== Office.AsyncResultStatus.Succeeded) {
}
else {
$('#subject').html(asyncResult.value.trim());
}
});