Outlook邮件正文仅返回最新邮件

时间:2018-08-15 10:26:12

标签: outlook outlook-addin office-js office-addins

我知道使用Office JavaScript API可以检索所选邮件的正文。

 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) {
            //access the message body here
        }
        else {
            $('#subject').html(asyncResult.value.trim());
        }
    });    

但是,在这些情况下,我有一系列来回的消息(例如,我问一个问题并得到回答,再问另一个问题并再次得到回答),我只想检索最近的一个或最近的两个消息。最好的方法是什么? Office.js似乎并不天真地对此提供支持。

我正在考虑使用正则表达式。

1 个答案:

答案 0 :(得分:0)

最好的方法是使用Microsoft Graph APIs