Table 8903 Email Recipient in 26

App
System Application
Namespace
System.Email

Fields, 3Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

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;
        }
    }
}

Fields, 3

IdNameTypeObsolete
1Email Message IdGuid-
2Email AddressText[250]-
3Email Recipient TypeEnum Email Recipient Type-

Keys, 1

NameFieldsObsolete
PK, clusteredEmail Message Id, Email Address, Email Recipient Type-