Alerts for Campaigns that are "Pending Delivery" phase? | Community
Skip to main content
Level 3
May 1, 2024
Solved

Alerts for Campaigns that are "Pending Delivery" phase?

  • May 1, 2024
  • 1 reply
  • 1371 views

I am trying to add in some QC checks for my team and would love an alert that tell us when an email delivery has been approved in the dashboard, but not yet confirmed for delivery, say after a 30 minute time frame?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Heku_

Hello, @connorslack24, you can create a technical workflow that queries every minute the delivery schema with these parameters:

With it, you query all the deliveries from campaigns that are waiting for delivery for more than 30 minutes. After that query you can use a javascript code to fill a variable with the names of the deliveries:

With it, you can use <%= vars.deliveriesPending %> in the alert. The workflow would look like this:

Hope it helps!

1 reply

Heku_
Heku_Accepted solution
Level 5
May 2, 2024

Hello, @connorslack24, you can create a technical workflow that queries every minute the delivery schema with these parameters:

With it, you query all the deliveries from campaigns that are waiting for delivery for more than 30 minutes. After that query you can use a javascript code to fill a variable with the names of the deliveries:

With it, you can use <%= vars.deliveriesPending %> in the alert. The workflow would look like this:

Hope it helps!

Level 3
May 13, 2024

Thank you Heku! I am def going to give this a go. WIll report back.

Level 3
May 30, 2024

It did, and it didnt, however I think the "didn't" component is due to our complex schemas we have and LIKELY something I missed.