Codeunit 8894 Email Account in 25
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 25
src/System Application/App/Email/src/Account/EmailAccount.Codeunit.al126 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>
/// Provides functionality to work with email accounts.
/// </summary>
codeunit 8894 "Email Account"
{
Access = Public;
/// <summary>
/// Gets all of the email accounts registered in Business Central.
/// </summary>
/// <param name="LoadLogos">Flag, used to determine whether to load the logos for the accounts.</param>
/// <param name="TempEmailAccount">Out parameter holding the email accounts.</param>
procedure GetAllAccounts(LoadLogos: Boolean; var TempEmailAccount: Record "Email Account" temporary)
begin
EmailAccountImpl.GetAllAccounts(LoadLogos, TempEmailAccount);
end;
/// <summary>
/// Gets all of the email accounts registered in Business Central.
/// </summary>
/// <param name="TempEmailAccount">Out parameter holding the email accounts.</param>
procedure GetAllAccounts(var TempEmailAccount: Record "Email Account" temporary)
begin
EmailAccountImpl.GetAllAccounts(false, TempEmailAccount);
end;
/// <summary>
/// Checks if there is at least one email account registered in Business Central.
/// </summary>
/// <returns>True if there is any account registered in the system, otherwise - false.</returns>
procedure IsAnyAccountRegistered(): Boolean
begin
exit(EmailAccountImpl.IsAnyAccountRegistered());
end;
/// <summary>
/// Checks if a specific email account is registered in Business Central.
/// </summary>
/// <param name="EmailAccountId"> The email account ID </param>
/// <param name="EmailConnector"> The email connector </param>
/// <returns></returns>
procedure IsAccountRegistered(EmailAccountId: Guid; EmailConnector: Enum "Email Connector"): Boolean
begin
exit(EmailAccountImpl.IsAccountRegistered(EmailAccountId, EmailConnector));
end;
/// <summary>
/// Deletes all selected email accounts.
/// </summary>
/// <param name="TempEmailAccountsToDelete">Holding the selected email accounts to delete.</param>
/// <param name="HideDialog">Hides any confirmation or interaction that involves a UI.</param>
/// <error>Your user account does not give you permission to set up email. Please contact your administrator.</error>
procedure DeleteAccounts(var TempEmailAccountsToDelete: Record "Email Account" temporary; HideDialog: Boolean)
begin
EmailAccountImpl.DeleteAccounts(TempEmailAccountsToDelete, HideDialog);
end;
/// <summary>
/// Validates an email address and throws an error if it is invalid.
/// </summary>
/// <remarks>If the provided email address is an empty string, the function will do nothing.</remarks>
/// <param name="EmailAddress">The email address to validate.</param>
/// <error>The email address "%1" is not valid.</error>
/// <returns>True if the email address is valid; false otherwise.</returns>
[TryFunction]
procedure ValidateEmailAddress(EmailAddress: Text)
begin
EmailAccountImpl.ValidateEmailAddress(EmailAddress, true);
end;
/// <summary>
/// Validates an email address and throws an error if it is invalid.
/// </summary>
/// <param name="EmailAddress">The email address to validate.</param>
/// <param name="AllowEmptyValue">Indicates whether to skip the validation if the provided email address is empty.</param>
/// <error>The email address "%1" is not valid.</error>
/// <error>The email address cannot be empty.</error>
/// <returns>True if the email address is valid; false otherwise.</returns>
[TryFunction]
procedure ValidateEmailAddress(EmailAddress: Text; AllowEmptyValue: Boolean)
begin
EmailAccountImpl.ValidateEmailAddress(EmailAddress, AllowEmptyValue);
end;
/// <summary>
/// Validates email addresses and displays an error if any are invalid.
/// </summary>
/// <remarks>If the provided email address is an empty string, the function will do nothing.</remarks>
/// <param name="EmailAddresses">The email addresses to validate, separated by semicolons.</param>
/// <error>The email address "%1" is not valid.</error>
/// <returns>True if all email addresses are valid; false otherwise.</returns>
[TryFunction]
procedure ValidateEmailAddresses(EmailAddresses: Text)
begin
EmailAccountImpl.ValidateEmailAddresses(EmailAddresses, true);
end;
/// <summary>
/// Validates email addresses and displays an error if any are invalid.
/// </summary>
/// <param name="EmailAddresses">The email addresses to validate, separated by semicolons.</param>
/// <param name="AllowEmptyValue">Indicates whether to skip the validation if no email address is provided.</param>
/// <error>The email address "%1" is not valid.</error>
/// <error>The email address cannot be empty.</error>
/// <returns>True if all email addresses are valid; false otherwise.</returns>
[TryFunction]
procedure ValidateEmailAddresses(EmailAddresses: Text; AllowEmptyValue: Boolean)
begin
EmailAccountImpl.ValidateEmailAddresses(EmailAddresses, AllowEmptyValue);
end;
[IntegrationEvent(false, false)]
internal procedure OnAfterValidateEmailAddress(EmailAddress: Text; AllowEmptyValue: Boolean)
begin
end;
var
EmailAccountImpl: Codeunit "Email Account Impl.";
}Procedures, 9
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| GetAllAccounts | (Boolean, var Record Email Account) | public | - | |
| GetAllAccounts | (var Record Email Account) | public | - | |
| IsAnyAccountRegistered | () | Boolean | public | - |
| ValidateEmailAddress | (Text) | Boolean | public | - |
| ValidateEmailAddress | (Text, Boolean) | Boolean | public | - |
| ValidateEmailAddresses | (Text) | Boolean | public | - |
| ValidateEmailAddresses | (Text, Boolean) | Boolean | public | - |
| IsAccountRegistered | (Guid, Enum Email Connector) | Boolean | public | - |
| DeleteAccounts | (var Record Email Account, Boolean) | public | - |
Events, 1
| Kind | Name | Parameters | Obsolete |
|---|---|---|---|
| Integration event | OnAfterValidateEmailAddress | (Text, Boolean) | - |