I have configured a timer to send a reminder email 3 times (interval set as 5 minutes each for testing) if the user task is not completed.
The timer is working but the execution listener didn't trigger the send email java class
<bpmn2:boundaryEvent id="rm-hod-approve-request" name="" attachedToRef="approval-hod">
<bpmn2:extensionElements>
<camunda:executionListener event="start" expression="#{HODAdapter.notifyApprovalReminder(execution)}"/>
</bpmn2:extensionElements>
<bpmn2:timerEventDefinition id="TimerEventDefinition_3">
<bpmn2:timeCycle xsi:type="bpmn2:tFormalExpression">R3/PT5M</bpmn2:timeCycle>
</bpmn2:timerEventDefinition>
</bpmn2:boundaryEvent>
I have upgraded camunda engine to 7.1.0-SNAPSHOT but still can't get the execution listener working
Besides, is there a way to set the interval differently for each reminder? For example, first reminder triggered after 5 days, second reminder on 7 days, then the final reminder on 15 days?
Thanks & Cheers,
PL
It's working now and thanks a lot :)
Cheers,
PL