Alfresco 5.2 community edition - Email notification sending

cancel
Showing results for 
Search instead for 
Did you mean: 
anuradha1
Active Member II

Alfresco 5.2 community edition - Email notification sending

Hello. 

I have a new requirement received from my client. I have already develop a workflow according to the client's requirements. Now the problem is he needs to send an e mail notification to person who received the current task if he unable to attempt to the task within 3 days.

In my workflow, it send an email notification at the beginning. when he received the task. But the client need something more as i described above. 

I need to know, is this possible with alfresco community 5.2 and if it is possible how can i do that?

Please help me.

Thank you.

2 Replies
kranthi
Active Member II

Re: Alfresco 5.2 community edition - Email notification sending

You need to add the boundary events according to your requirement.

Like:

<boundaryEvent id="notifyAfterNoOfDays" name="Timer" attachedToRef="task1" cancelActivity="false">
<timerEventDefinition>
<timeDate>${noOfDaysAfter}</timeDate>
</timerEventDefinition>
</boundaryEvent>

<sequenceFlow id="notifyToDelegator" sourceRef="notifyAfterNoOfDays" targetRef="notifyEmailTask" />

In notifyEmailTask you need to write custom script for sending mails.

anuradha1
Active Member II

Re: Alfresco 5.2 community edition - Email notification sending

Thank you Kumar. I will try this way.