diff --git a/src/System Application/App/Email/src/Email/EmailImpl.Codeunit.al b/src/System Application/App/Email/src/Email/EmailImpl.Codeunit.al index e275ad0ac1..72f8f1ca30 100644 --- a/src/System Application/App/Email/src/Email/EmailImpl.Codeunit.al +++ b/src/System Application/App/Email/src/Email/EmailImpl.Codeunit.al @@ -750,9 +750,8 @@ codeunit 8900 "Email Impl" repeat if AllObj.Get(AllObj."Object Type"::Table, EmailRelatedRecord."Table Id") then begin SourceRecordRef.Open(EmailRelatedRecord."Table Id"); - if SourceRecordRef.ReadPermission() then - if SourceRecordRef.GetBySystemId(EmailRelatedRecord."System Id") then - EmailRelatedRecord.Mark(true); + if SourceRecordRef.GetBySystemId(EmailRelatedRecord."System Id") then + EmailRelatedRecord.Mark(true); SourceRecordRef.Close(); end; until EmailRelatedRecord.Next() = 0;