Table 8903 Email Recipient, source in 27

Source242526272829metadata in 27

src/System Application/App/Email/src/Message/EmailRecipient.Table.al40 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;

table 8903 "Email Recipient"
{
    Access = Internal;
    InherentPermissions = X;
    InherentEntitlements = X;

    fields
    {
        field(1; "Email Message Id"; Guid)
        {
            DataClassification = SystemMetadata;
            TableRelation = "Email Message".Id;
        }

        field(2; "Email Address"; Text[250])
        {
            DataClassification = CustomerContent;
        }

        field(3; "Email Recipient Type"; Enum "Email Recipient Type")
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; "Email Message Id", "Email Address", "Email Recipient Type")
        {
            Clustered = true;
        }
    }
}