Skip to main content
Send customers an automatic confirmation as soon as they place an order. This flow keeps shoppers informed about order status, reduces “Where’s my order?” support tickets, and builds trust right after checkout.

Goal

Notify a customer that their order has been created.

Before you build the flow

Set up an automated campaign in the channel you want to use. You can send the confirmation through any of the following:
  • Email
  • SMS
  • Viber
  • Mobile push
  • Web push
Set the campaign profile to Transactional. Order confirmations communicate technical information about the order, so they must reach every customer regardless of their marketing subscription status.
To display order details (line items, totals, shipping address, and so on), you have two options:
  • Use the Order parameter in your campaign template to pull order data dynamically.
  • Use the new template constructor, which renders order details automatically without requiring you to wire up the parameter.

Build the flow

1

Add the trigger

Start the flow with the New Order event. This event fires whenever an order is created in Maestra.
Backdated orders also trigger the flow, as long as the order falls within the relevance window of the flow’s step group and no later modifications have been made to that order.
2

Add an order status condition

The New Order event fires for any newly created order, regardless of its status. Add a condition that checks the order status so the confirmation only goes out for the statuses you care about (for example, Confirmed or Paid).As an alternative, you can replace the New Order trigger with the Order Status Changed event. Use this approach if you want the flow to run only when an order transitions into a specific status, rather than at the moment of creation.
3

Send the campaign

Add a send step that fires the transactional campaign you prepared earlier.
Because this is a transactional message, the customer must receive it. Do not add subscription checks or marketing validity checks before the send step — they will block legitimate order confirmations.
4

Activate the flow

Turn the flow on. New orders will now trigger the confirmation automatically.

Flow structure at a glance

StepTypeConfiguration
1TriggerNew Order event (or Order Status Changed)
2ConditionOrder status matches the value you want to confirm
3ActionSend transactional campaign (email, SMS, Viber, mobile push, or web push)

Key things to remember

  • The confirmation is transactional, so it bypasses subscription and marketing validity checks.
  • Use the Order parameter or the new constructor to render order details in the template.
  • If you want to confirm a specific status change (for example, only after payment is captured), switch the trigger to Order Status Changed instead of layering a condition on top of New Order.
  • Backdated orders can still trigger the flow when they land inside the step group’s relevance window.