Soort bericht: Aankoopbevestiging van een bestelling via de QR-code op de tafel in de horeca.
Wanneer: Direct nadat een klant een bestelling via de QR-code op de tafel heeft geplaatst.
Template
Subjectline: Bedankt voor je bestelling!
Titel: Hier is je bevestiging
Beste gast,
Bekijk de details van jouw bestelling.
Overzicht bestelling:
Kassabon: {{params.Invoice.InvoiceHeaderID}}
Besteldatum: {{params.Invoice.OrderDate}}
Prijs: {{params.Invoice.SalesAmountInclVAT}}
E-mail: {{params.Invoice.Email}}
Locatie: {{params.Location.Name}}
Producten
{%for tickets in params.AllSubscriptions%}{%endfor%}
Product | Hoeveelheid | Prijs |
{{tickets.PartName}} | {{tickets.LeftOverQuantity}} | {{tickets.SalesPriceInclVAT}} |
Wij hopen je hiermee voldoende te hebben geïnformeerd.
Met vriendelijke groet,
[JOUW ORGANISATIENAAM]
Belangrijk! De productenlijst is html-code. De code is als volgt:
<h4> Producten </h4>
<table style="width:100%">
<tr style="padding: 15px; text-align: left; border-bottom: 1px solid #CCC">
<th style="font-weight: bold;">Product</th>
<th style="font-weight: bold;">Hoeveelheid</th>
<th style="font-weight: bold;">Prijs</th>
</tr>
{%for tickets in params.AllSubscriptions%}
<tr style="padding: 15px; text-align: left; border-bottom: 1px solid #CCC">
<td>{{tickets.PartName}}</td>
<td>{{tickets.LeftOverQuantity}}</td>
<td>{{tickets.SalesPriceInclVAT}}</td>
</tr>
{%endfor%}
</table>
Parameters
Parameter | Omschrijving |
---|---|
{{params.Invoice.InvoiceHeaderID}} | Kassabon |
{{params.Invoice.OrderDate}} | Besteldatum |
{{params.Invoice.SalesAmountInclVAT}} | Prijs |
{{params.Invoice.Email}} | E-mailadres |
{{params.Location.Name}} | Locatie |
{{tickets.PartName}} | Product |
{{tickets.LeftOverQuantity}} | Hoeveelheid |
{{tickets.SalesPriceInclVAT}} | Prijs |
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article