Introduction

Tourbiz automatically handles sending emails to your customers at every step of their journey. These emails use dynamic tags in curly braces — {TAG_NAME} — which the system replaces with the actual values when sending.

⚠️ Golden rule: Never remove a {…} tag without knowing exactly what it does. If in doubt, keep the tag and only edit the text around it.

To configure your emails, go to General Settings, Email section:

Email types

NameTriggerPayment link
Payment confirmationPayment acceptedNo
Ticket deliveryE-tickets generatedNo
48h reminder48h before the serviceNo
Gift voucherGift voucher purchaseNo
InvoiceInvoice generatedNo
Payment declinedPayment failureNo
Order in progressAbandoned cart (reminder)⚠️ Yes
Finalize orderQuote or order to confirm⚠️ Yes
Order modificationBalance still due⚠️ Yes
Password resetReset requestNo
Product availabilityProduct available againNo
Customer reviewAfter the visitNo

Tag reference

Customer tags

TagDescriptionType
{CUSTOMER_FIRSTNAME}Customer’s first nameAutomatic
{CUSTOMER_LASTNAME}Last nameAutomatic
{CUSTOMER_NAME}Full nameAutomatic
{CUSTOMER_EMAIL}Customer’s email addressAutomatic
{CUSTOMER_ID}Internal customer numberAutomatic
{CUSTOMER_PASSWORD}Temporary password (reset only)Automatic

Order and cart tags

TagDescriptionType
{BASKET_SUMMARY}Full cart summary tableAutomatic
{BASKET_ROW_CUSTOMER_SUMMARY}Simplified summary of one lineAutomatic
{BASKET_AMOUNT}Total order amountAutomatic
{BASKET_ID}Transaction number / referenceAutomatic
{ORDER_TOKEN}Unique cart token — used in payment linksAutomatic

Site and contact tags

TagDescriptionType
{SITE_NAME}Your shop’s nameAutomatic
{WEBSITE_LINK}Your site’s root URLAutomatic
{SITE_PHONE_NUMBER}Contact phone numberAutomatic
{SITE_CONTACT_EMAIL_ADDRESS}Contact emailAutomatic
{SITE_HEADQUARTER_ADDRESS_NEWLINE}Head office postal addressAutomatic

Product, agent, and other tags

TagDescriptionType
{PRODUCT_NAME}Name of the product / activityAutomatic
{ADVISOR_NAME}Name of the agent in chargeAutomatic
{ALERT_MESSAGE}Alert message at the top of the emailCustomizable
{PROMO_IN_EURO}Discount amount (€)Automatic
{GIFT_CARD_AMOUNT}Gift voucher amountAutomatic
{GIFT_CERTIFICATE_EXPIRATION_DATE}Gift voucher expiration dateAutomatic
{CUSTOMER_CLORIAN_TICKET}Clorian ticket download blockAutomatic
{CHANGE_PASSWORD_LINK}Password reset link (valid 24h)Automatic
{CREATE_PASSWORD_LINK}Password creation link (valid 24h)Automatic

Three emails contain a Pay for order button: Order in progress, Finalize order, and Order modification. This button is always built on this pattern:

{WEBSITE_LINK}/cart/?order_token={ORDER_TOKEN}

It breaks down into two parts:

PartEditable?Explanation
{WEBSITE_LINK}/cart/⚠️ If neededPath to your cart page. Adjust if your slug is different from /cart/
?order_token={ORDER_TOKEN}🔒 NeverIdentifies the customer’s cart. Without this token, the link won’t work

Case 1 — Your cart page is at /cart/ (default)

✅ No changes needed. The link works as is.

{WEBSITE_LINK}/cart/?order_token={ORDER_TOKEN}

Case 2 — Your cart page is at a different slug

⚠️ Important: If you don’t change the slug and your cart isn’t at /cart/, the customer will land on a non-existent page (404 error) and won’t be able to pay for their order.

💡 How to find your slug? Add a product to the cart on your site and look at the URL in your browser. For example, if the URL is https://mysite.com/my-cart/, your slug is /my-cart/.

Examples depending on your setup:

Your actual slugLink to use
/cart/ (default){WEBSITE_LINK}/cart/?order_token={ORDER_TOKEN}
/basket/{WEBSITE_LINK}/basket/?order_token={ORDER_TOKEN}
/checkout/{WEBSITE_LINK}/checkout/?order_token={ORDER_TOKEN}
/booking/{WEBSITE_LINK}/booking/?order_token={ORDER_TOKEN}
/shop/cart/{WEBSITE_LINK}/shop/cart/?order_token={ORDER_TOKEN}

Summary — what you can edit

ElementEditable?Note
{WEBSITE_LINK}NoManaged automatically
/cart/ (the slug)If neededAdjust to match your actual URL
?order_token=NeverRequired technical parameter
{ORDER_TOKEN}NeverUnique cart identifier
Button labelYesText displayed on the button

Quick summary of the 3 emails with a payment link

EmailPayment link to set up
Order in progress (abandoned cart){WEBSITE_LINK}/cart/?order_token={ORDER_TOKEN}
Finalize order{WEBSITE_LINK}/cart/?order_token={ORDER_TOKEN}
Order modification{WEBSITE_LINK}/cart/?order_token={ORDER_TOKEN}

In all three cases, replace /cart/ with the actual slug of your cart page if it differs. Don’t touch anything else.

How to edit your Emails?

Nothing could be simpler! In Tourbiz, all the important transactional emails are pre-configured.

Select the pre-configured email you want to edit by clicking on it.

Once open, you can edit your text, following closely the tag and slug guide presented above:

Best practices

What you can freely edit

  • The text around the tags (greetings, phrasing, tone)
  • The button label (e.g.: “Pay for my order,” “Finalize my booking”)
  • The order of paragraphs
  • Adding legal notices, terms & conditions, practical information
  • The signature (team name, contact details)

What you should not edit

  • The {…} tags themselves (exact spelling, correct case)
  • The ?order_token={ORDER_TOKEN} part in payment links
  • The password reset / creation links ({CHANGE_PASSWORD_LINK}, {CREATE_PASSWORD_LINK})

⚠️ Watch the case: {CUSTOMER_FIRSTNAME} and {customer_firstname} are not equivalent. Always copy-paste tags from this document to avoid typos.

Tip: after each change, place a test order to check that the emails display correctly and the links work. Always test the payment button on the emails that include one.