Freigeben über


Office.MailboxEnums.SendModeOverride enum

Gibt die Sendemodusoption an, die die im Manifest zur Laufzeit festgelegte Option überschreibt.

Informationen zum Implementieren eines Smart Alerts-Add-Ins finden Sie unter Behandeln von OnMessageSend- und OnAppointmentSend-Ereignissen in Ihrem Outlook-Add-In mit intelligenten Warnungen.

Hinweise

[ API-Satz: Postfach 1.14 ]

Anwendbarer Outlook-Modus: Verfassen

Beispiele

// The following example checks whether a location is specified in an appointment before it's sent.
function onAppointmentSendHandler(event) {
    Office.context.mailbox.item.location.getAsync({ asyncContext: event }, (asyncResult) => {
        const event = asyncResult.asyncContext;
        if (asyncResult.status === Office.AsyncResultStatus.Failed) {
            console.log(asyncResult.error.message);
            // If the add-in is unable to retrieve the appointment's location, the appointment isn't sent.
            event.completed({ allowEvent: false, errorMessage: "Failed to get the appointment's location." });
            return;
        }

        if (asyncResult.value === "") {
            // If no location is specified, the appointment isn't sent and the user is alerted to include a location.
            event.completed(
                {
                    allowEvent: false,
                    cancelLabel: "Add a location",
                    commandId: "msgComposeOpenPaneButton",
                    errorMessage: "Don't forget to add a meeting location.",
                    sendModeOverride: Office.MailboxEnums.SendModeOverride.PromptUser
                }
            );
        } else {
            // If a location is specified, the appointment is sent.
            event.completed({ allowEvent: true });
        }
    });
}

Felder

PromptUser = "promptUser"

Stellt die Option Trotzdem senden in einem Dialogfeld "Intelligente Warnungen" bereit, wenn das E-Mail-Element die Bedingungen des ereignisbasierten Add-Ins nicht erfüllt. Weitere Informationen finden Sie in der Option zum Senden des Benutzer-Eingabeaufforderungsmodus.