2024-02-13 04:20:35 +00:00
|
|
|
{{ printf (gettext "Hi %s,") .CustomerFullName }}
|
|
|
|
|
2024-02-29 16:39:00 +00:00
|
|
|
{{( gettext "We have successfully received the payment for the booking with the following details:" )}}
|
2024-02-13 04:20:35 +00:00
|
|
|
|
|
|
|
{{ 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 }}
|
2024-02-13 22:45:25 +00:00
|
|
|
{{ if ne .Total .DownPayment }} {{ printf ( gettext "Down payment: **%s**") .DownPayment }}{{ end }}
|
2024-02-13 04:20:35 +00:00
|
|
|
|
|
|
|
{{( gettext "Thank you for your booking, and see you soon!" )}}
|
|
|
|
|
2024-02-29 15:59:30 +00:00
|
|
|
--
|
2024-02-13 04:20:35 +00:00
|
|
|
{{ with .CompanyAddress -}}
|
|
|
|
{{ .TradeName }},
|
|
|
|
{{ .Address }},
|
|
|
|
{{ .PostalCode}} · {{ .City }} · {{ .Province }}
|
|
|
|
{{ .Country }}
|
|
|
|
{{- end }}
|