Office.MailboxEnums.ItemNotificationMessageType enum

为约会或邮件指定通知邮件类型。

注解

[ API 集:邮箱 1.3 ]

适用的 Outlook 模式:撰写或阅读

示例

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/35-notifications/add-getall-remove.yaml

// Adds an error notification to the mail item.
const id = $("#notificationId").val().toString();
const details =
  {
    type: Office.MailboxEnums.ItemNotificationMessageType.ErrorMessage,
    message: "Error notification message with id = " + id
  };
Office.context.mailbox.item.notificationMessages.addAsync(id, details, handleResult);

字段

ProgressIndicator = "progressIndicator"

通知消息是进度指示器。

InformationalMessage = "informationalMessage"

通知消息是一条信息性消息。

ErrorMessage = "errorMessage"

通知消息是错误消息。

重要提示:Android 版和 iOS 版 Outlook 仅 InformationalMessage 支持该类型。

InsightMessage = "insightMessage"

通知消息是包含操作的信息性消息。