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
M AnM An 

Is it possible to send email for specific time in Salesforce?

If possible using time-dependent workflow. Can anyone share me
 
Best Answer chosen by M An
Waqar Hussain SFWaqar Hussain SF
You can develop a scheduled apex job and then can schedule it to any time such as 10 am daily or weekly. In this schedule job either you can send email using apex email class or can update a field on any object which will trigger workflow to send email. 

Let me know If you have any question. 

All Answers

Rahul KumarRahul Kumar (Salesforce Developers) 
Hi,

you can always use Time-Dependent Workflow to accomplish this.
just add a time-dependent action for Email Alert to your workflow. hope it helps.
Please mark it as best answer if the information is informative.so that question is removed from an unanswered question and appear as a proper solution.

Thanks
Rahul Kumar
 
M AnM An
yes, Rahul, I have tried using time-dependent. But my question is to send an email at a specific time says 10 am.
 
Waqar Hussain SFWaqar Hussain SF
You can develop a scheduled apex job and then can schedule it to any time such as 10 am daily or weekly. In this schedule job either you can send email using apex email class or can update a field on any object which will trigger workflow to send email. 

Let me know If you have any question. 
This was selected as the best answer