How to stop automation for only one customer

Topic summary

Goal: Prevent a single customer from receiving a scheduled post‑purchase follow‑up email (sent 18 days after purchase) without pausing the automation for others.

Solution proposed and adopted: Add a unique customer tag (e.g., “noemail”) to that customer, and insert a conditional check in the automation before the send step. If the customer has the tag, the flow skips/exits and no email is sent. This approach allows case‑by‑case suppression while keeping the automation active for everyone else.

Implementation: The original poster confirmed success and shared a screenshot showing the condition based on customer tags.

Outcome: Issue resolved. The tagging-plus-condition pattern can be reused for future exceptions.

Notes: Screenshots were provided to illustrate the configured condition but are not required to understand the solution. Discussion remained focused, with no conflicting viewpoints.

Summarized with AI on December 27. AI used: gpt-5.

I have an automation that is triggered when someone purchases a product. It waits 18 days and then sends an email to the customer with some follow up information about the product.

I had a customer email about the product, and I sent them the information packet directly, so they do not need to receive the email that the automation will send them. Is there a way to stop the automation from running for this customer in particular but continue running for all of the other customers?

This specific situation does not have huge consequences, but I would also like to know the solution for other future situations where I want to stop an automation from running for one customer in particular.

Tag the customer with a tag like “noemail” then add a check so that if any custonmer has that tag they won’t get an email.

1 Like

Thanks! That will work!