我有一个字符串数组,我将在需要时根据字符串数组更改电子邮件正文中的字体颜色。到目前为止,我可以使用Word加载项来完成此操作,但是无法更改Outlook加载项中的字体颜色。这是我用来从电子邮件正文获取文本的代码。
Office.context.mailbox.item.body.getAsync(Office.CoercionType.Text, {},
function (asyncResult) {
var text = asyncResult.value;//this is the text
var prop = asyncResult.value.sourceProperty;
});