Office.MailboxEnums.SendModeOverride enum
Especifica a opção de modo de envio que substitui o conjunto de opções no manifesto no runtime.
Para obter informações sobre como implementar um suplemento De Alertas Inteligentes, consulte Handle OnMessageSend e OnAppointmentSend events in your Outlook add-in with Smart Alerts (Processar eventos OnMessageSend e OnAppointmentSend no seu suplemento do Outlook com Alertas Inteligentes).
Comentários
[ Conjunto de API: Caixa de Correio 1.14 ]
Modo Outlook aplicável: Compose
Exemplos
// 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 });
}
});
}
Campos
PromptUser = "promptUser" | Fornece a opção Enviar Mesmo Assim numa caixa de diálogo Alertas Inteligentes quando o item de correio não cumpre as condições do suplemento baseado em eventos. Para saber mais, veja a opção de modo de envio do utilizador de pedido. |