Enum 8901 Email Recipient Type in 25
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | To | - |
| 1 | Cc | - |
| 3 | Bcc | - |