Enum 8890 Email Scenario, source in 28
Source242526272829metadata in 28
src/System Application/App/Email/src/Scenario/EmailScenario.Enum.al24 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>
/// Email scenarios.
/// Used to decouple email accounts from sending emails.
/// </summary>
enum 8890 "Email Scenario"
{
Extensible = true;
/// <summary>
/// The default email scenario.
/// Used in the cases where no other scenario is defined.
/// </summary>
value(0; Default)
{
Caption = 'Default';
}
}