Skip to main content
The classic sequence, and a good first one because the success metric is obvious.

The shape

1

Write two templates

Both marketing category — this is promotional, and mis-categorising it to dodge consent rules is the fastest way to lose a WhatsApp number.cart_reminder_1:
cart_reminder_2:
Submit both and wait for approval. See Templates.
2

Build the sequence

Two steps:Bind {{1}} to the contact’s name and {{2}} to a value carried on the enrolment, so the message names the actual product.
3

Fire the event from your shop

The idempotency key is doing real work here. Cart-abandonment jobs typically run on a timer and will happily re-fire for the same cart every few minutes. Without a key derived from the cart, your customer gets the same reminder nine times.
4

Stop it when they buy

The part people forget, and the one customers notice.
Configure the sequence to end on order_placed. Nothing is worse than “last chance, your cart clears tonight” arriving after somebody has paid.
Checked at enrolment and again at each send. A customer who opts out on hour one does not receive hour twenty-four — you do not have to handle that yourself.

Timing

One hour and 24 hours are a sensible default rather than a law. Two rules worth keeping:
  • Not immediately. Somebody who wandered off to check a delivery date has not abandoned anything.
  • Two messages, not five. The third reminder converts almost nobody and earns you a block, which costs you the channel for that customer permanently.

Checking it worked

The sequence page shows enrolments, which step each contact is on, and who completed or exited early. Against that, the Analytics conversation count tells you how many replied — which is the number that actually matters.