Enum 8891 Email Action in 27

App
System Application
Namespace
System.Email

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Email/src/Email/Outbox/EmailAction.Enum.al35 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Email;

/// <summary>
/// Defines the action that the user can take when open an email message in the editor modally.
/// </summary>
enum 8891 "Email Action"
{
    Extensible = false;

    /// <summary>
    /// The email was saved as draft.
    /// </summary>
    value(0; "Saved As Draft")
    {
    }

    /// <summary>
    /// The email was discarded.
    /// </summary>
    value(1; Discarded)
    {
    }

    /// <summary>
    /// The email was sent.
    /// </summary>
    value(2; Sent)
    {
    }
}

Values, 3

IdNameObsolete
0Saved As Draft-
1Discarded-
2Sent-