diff --git a/flow_action_components/SendBetterEmail/force-app/main/default/classes/SendBetterEmailRequest.cls b/flow_action_components/SendBetterEmail/force-app/main/default/classes/SendBetterEmailRequest.cls index 035d8ebc0..2e07cf086 100644 --- a/flow_action_components/SendBetterEmail/force-app/main/default/classes/SendBetterEmailRequest.cls +++ b/flow_action_components/SendBetterEmail/force-app/main/default/classes/SendBetterEmailRequest.cls @@ -12,6 +12,7 @@ * 2.00.02 10-12-2020 Jack D. Pond Reverted names for backward compatibility * 2.00.05 02-12-2021 Jack D. Pond setTreatTargetObjectAsRecipient Fix: #586,ReplyEmail with SendBetterEmail #595 * 2.01.06 02-12-2021 Jack D. Pond Fix remainder of checkboxes default/save Fix: #702,#831 + * 07-04-2026 camro Fix checkbox for send async **/ @SuppressWarnings('PMD') public inherited sharing class SendBetterEmailRequest { @@ -242,4 +243,9 @@ public inherited sharing class SendBetterEmailRequest { ) @AuraEnabled public Boolean sendAsync; -} \ No newline at end of file + + + @invocableVariable(description='!(Defaults to False)') + @AuraEnabled + public String cb_sendAsync; +}