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
gopikrishnagopikrishna 

repeatedly sent mail after 2 days for day

Hi all,

         which formula or workflow suitable  for every two days sent the mail automatically eg: 29/5/2012(dd/mm/yy) after

two day 31/5/2012 then after 2 days 2/6/2012.....................

Navatar_DbSupNavatar_DbSup

Hi,

 

You can create a time dependent work flow by which send the email on the basis of some condition.

 

Follow the below step for creating a time dependent work flow

1.            Setup->Create->Workflow Rules->new rule

2.            Select object and click on next button

3.            Enter Rule Name

4.            Select when a record is created, or when a record is edited and did not previously meet the rule criteria radio option

5.            Select a condition

6.            Click on save&next button

7.            Click on click on Add Time Trigger and follow the steps

8.            Click on add workflow action

9.            Select “New email alert” and follow the steps

10.          After creating the workflow activate the workflow rule.

 

Another way is that you can create an apex class and scheulde the class.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

 

 

Nageswara  reddyNageswara reddy

Hi Navatar,

 

      I think   for the first time  only email alert  will come. from the next time  on wards it won't come

 

 

Nageswara

gopikrishnagopikrishna

Thank you Ankit,

         

        but that process apply for only first time 2 days,after that  i want contineous e-mail alert for every 2days. is there any solution with workflow?

Nazeer AhamedNazeer Ahamed

It is generally not recomended to play with triggering events, but set time dependant workflow based on some field update or flag true.

 

Then have daily scheduled apex job to update that field.

 

so that daily scheduled apex class will call time based workflow.