我看到Office.context.mailbox.item.body.setSelectedDataAsync()
如果在邮件正文为纯文本时将options.coercionType
设置为Office.CoercionType.Html
,则会失败。
我想知道在调用setSelectedDataAsync
之前是否有办法检查邮件正文的格式是什么?
答案 0 :(得分:0)
您需要使用getTypeAsync
对象的body
方法。更重要的是,这是建议的方式将任何数据插入邮件项目的正文。在插入之前,您应该首先通过调用getTypeAsync
来验证支持的项目格式。请阅读有关Outlook API文档中Insert data in the body when composing an appointment or message in Outlook的主题的更多信息。