Codeunit 8865 Email Attachments Impl in 27

App
System Application
Namespace
System.Email

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Email/src/Email/EmailAttachmens/EmailAttachmentsImpl.Codeunit.al20 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;

codeunit 8865 "Email Attachments Impl"
{
    Access = Internal;
    EventSubscriberInstance = Manual;
    InherentEntitlements = X;
    InherentPermissions = X;

    [EventSubscriber(ObjectType::Codeunit, Codeunit::"Email Message Impl.", 'OnBeforeDeleteSentEmailAttachment', '', false, false)]
    local procedure OnBeforeDeleteSentEmailAttachment(var BypassSentCheck: Boolean)
    begin
        BypassSentCheck := true;
    end;

}