Interface Default Email Rate Limit
- App
- System Application
- Namespace
- System.Email
- Versions
- 21-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Email/src/Connector/DefaultEmailRateLimit.Interface.al18 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>
/// A default email rate limit interface used to limit how many e-mails per second a connector can send.
/// </summary>
interface "Default Email Rate Limit"
{
/// <summary>
/// Provides the default email rate limit for the connector.
/// </summary>
/// <returns>A default email rate limit.</returns>
procedure GetDefaultEmailRateLimit(): Integer;
}