Hi,
I have got the below scenario,
I'm having a task report (having task assignee, taskid and task name etc,).
Note: Each assignee might have more than one task.
I need to get the task details of each assignee and send an email to that assignee by keeping his/her task's in the email body (email body should contain each task Link to complete the task).
example:
if an user 'A' having three tasks, then we need to send an single email with three tasks links in the email body.
Please suggest me a best approach for this.
Discussion posts and replies are publicly visible
At a high level:
Thanks Carl,
points 1,2 and 4 are understandable except point 3
Could you please explain/draw a dummy flow for me.
You define a rule that you'll pass to reduce like so: reduce(rule!APP_myRule, {}, pv!taskReportResults). In APP_myRule you would check if the list item (a row from your task report) is for an assignee that you already processed (in which case you would add it to that assignee's list) or if it's a new one (in which case you create a new list).
Could you Please provide me the detailed information..As I was confused with all..
Please provide me an example code what we need to keep in the rule APP_myRule..?