function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rakhi B 10Rakhi B 10 

how to call apex class in process builder email send method.

Narender Singh(Nads)Narender Singh(Nads)
Hi Rakhi,
In your Apex class, use @InvocableMethod for the method you want to call from your process builder.

For limits and considerations of this annotation refer : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_InvocableMethod.htm

Let me know if it helps.
Thanks!