FLOW_SendEmail.DTO_Response
Class
apex
global inherited sharing class FLOW_SendEmail.DTO_ResponseData Transfer Object (DTO) representing the outcome of an email request.
Since: 1.0
Fields
| Field | Description |
|---|---|
| global String errors | Detailed error message if success is false. |
| global Boolean success | true if the email was successfully handed off to the delivery mechanism; false otherwise. |
Field Details
errors
apex
@InvocableVariable(required=false description='A string of errors encountered during the email send or activity logging attempt.' label='Errors') global String errorsType: String
Detailed error message if success is false.
Since: 1.0
success
apex
@InvocableVariable(required=true description='Indicates whether the email was successfully submitted (true) or failed validation/internal process (false).' label='Send Successful') global Boolean successType: Boolean
true if the email was successfully handed off to the delivery mechanism; false otherwise.
Since: 1.0