Send workflow emails based on date field
User wants to create a document and specify a review date. The workflow needs to send out an email 60 days before the review date and the day of the review date. The catch is that the review date may change after the document is created. I tried using a timer to wait 5 minutes and then called a java method we wrote to see if the date had changed but that was overloading the workflow manager because of the volume of active documents. I could drop the timer and implement a java loop until the appropriate date but there are concerns this would move the pressure to the method server. Is it possible to send emails based on a date attribute that can change without pressure to the system?

