Enum 8901 Email Recipient Type in 25

App
System Application
Namespace
System.Email

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Email/src/Message/EmailRecipientType.Enum.al36 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>
/// Specifies the type of an email recipient.
/// </summary>
enum 8901 "Email Recipient Type"
{
    Extensible = true;

    /// <summary>
    /// Recipient type 'To'.
    /// </summary>
    value(0; "To")
    {
    }

    /// <summary>
    /// Recipient type 'Cc'.
    /// </summary>
    value(1; Cc)
    {
    }


    /// <summary>
    /// Recipient type 'Bcc'.
    /// </summary>
    value(3; Bcc)
    {
    }
}

Values, 3

IdNameObsolete
0To-
1Cc-
3Bcc-