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
madhumadhu 

reminder mail in approval process

In approval process, approver has to get a reminder mail after 1 day the record submit for approval. how to achieve this.
SarfarajSarfaraj
You have to use Time-Dependent workflow action to do this.
Amit Chaudhary 8Amit Chaudhary 8
Please do all below Step:-

Approval process changes 
1) Create two checkbox field on your object one "IsUnder Approval" is 2nd "Approved".
2) In the approval process add one field updated in the initial Step to make the "IsUnder Approval" as true.
3) On Final Approval or rejection add one field update to set "IsUnder Approval" field as false.

Time dependent workflow
4) Create one time dependent workflow and add rule should be if "IsUnder Approval" true.
5) Then add one "Email alert" after rule triggered.

Please mark this as solution by selecting it as best answer if this solves your problem, So that if anyone has this issue this post can help

Thanks ,
Amit Chaudhary
 
surasura
you can use a schedulable apex class for this purpose . It is more flexible 
Ruth Smith 11Ruth Smith 11
My approval is on the quote object - and the record has no owner. How can I specify who the email should go to?