19 lines
685 B
Plaintext
19 lines
685 B
Plaintext
|
{{ printf (gettext "Hi %s,") .CustomerFullName }}
|
||
|
|
||
|
{{( gettext "We have successfully received the payment for the booking with the following details:" )}}</p>
|
||
|
|
||
|
{{ printf ( gettext "Payment reference: **%s**") .PaymentReference }}
|
||
|
{{ printf ( gettext "Accommodation: **%s**") .AccommodationName }}
|
||
|
{{ printf ( gettext "Arrival Date: **%s**") .ArrivalDate }}
|
||
|
{{ printf ( gettext "Departure Date: **%s**") .DepartureDate }}
|
||
|
{{ printf ( gettext "Total: **%s**") .Total }}
|
||
|
|
||
|
{{( gettext "Thank you for your booking, and see you soon!" )}}
|
||
|
|
||
|
{{ with .CompanyAddress -}}
|
||
|
{{ .TradeName }},
|
||
|
{{ .Address }},
|
||
|
{{ .PostalCode}} · {{ .City }} · {{ .Province }}
|
||
|
{{ .Country }}
|
||
|
{{- end }}
|