{{ printf (gettext "Hi %s,") .CustomerFullName }}

{{( gettext "We have successfully received the payment for the booking with the following details:" )}}

  {{ 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 }}
{{ if ne .Total .DownPayment }}  {{ printf ( gettext "Down payment: **%s**") .DownPayment }}{{ end }}
  
{{( gettext "Thank you for your booking, and see you soon!" )}}

-- 
{{ with .CompanyAddress -}}
{{ .TradeName }},
{{ .Address }},
{{ .PostalCode}} · {{ .City }} · {{ .Province }}
{{ .Country }}
{{- end }}