Table 8903 Email Recipient in 28
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 28
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
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Email Message Id | Guid | - |
| 2 | Email Address | Text[250] | - |
| 3 | Email Recipient Type | Enum Email Recipient Type | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| PK, clustered | Email Message Id, Email Address, Email Recipient Type | - |