Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!

The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.

Send Email Reminders

A Score Level 1

 I have a requirement to send Email notifications to all users who received task to remind them of the due date if they have not completed the task. The due date should be 14 days after the task is assigned.The reminder notification should be sent at the following intervals if the task is active:

  • 7 days left,
  •  5 days left,
  • 2 days left
  • Due Date

Due Date plus 1, 2, 3, etc. until the task has been submitted.The notifications should to be sent out daily after the due date has passed until the task is completed.

I am not sure how i should pass these different scenarios to escalation in userinput task .Any suggestions?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    A Score Level 1
    in reply to Stefan Helzle

    .

     a!localVariables(
      local!endDate: pv!startDate + 14,
      if(
        and(
          
          pv!isReviewTask = false,
          or(
            exact(today(), local!endDate),
            (local!endDate - 10),
            (local!endDate - 7),
            (local!endDate - 2),
            (local!endDate - 5)
          )
        ),
        true(),
        false
      )
    )

    I tried it adding a expression but its throwing error for user input task, stating task has been completed by other assignee though its still active.

Children