Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 988 Bytes

File metadata and controls

41 lines (34 loc) · 988 Bytes

App.OnMessage

Table of Contents

Explanation for App.OnMessage.

Add This to Your Application

With(
    {MyMessage: "The App.OnMessage event just got invoked! Why? What is this event used for, anyways?"},
    Notify(
        MyMessage,
        NotificationType.Error,
        5000
    );
    Office365Outlook.SendEmailV2(
        User().Email,
        MyMessage,
        MyMessage,
        {
            From: User().Email,
            Cc: User().Email,
            Bcc: User().Email,
            Sensitivity: "Normal",
            // "Normal" "Personal" "Private" "Confidential" 
            ReplyTo: User().Email,
            Importance: "Normal"// "Low" "Normal" "High"
        }
    )
);

History

Date Author Changes
2026-01-27 Migration Initial TOC and history section added