76 lines
5.2 KiB
Plaintext
76 lines
5.2 KiB
Plaintext
|
<!doctype html>
|
||
|
<html lang="{{ .CurrentLocale }}">
|
||
|
<head>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<title>{{( pgettext "Booking Payment Notification" "title" )}}</title>
|
||
|
<style>
|
||
|
</style>
|
||
|
</head>
|
||
|
<body style="font-family: Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.3; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; background-color: #f4f5f6; margin: 0; padding: 0;">
|
||
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body"
|
||
|
style="border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f5f6; width: 100%;"
|
||
|
width="100%" bgcolor="#f4f5f6">
|
||
|
<tr>
|
||
|
<td style="font-family: Helvetica, sans-serif; font-size: 16px; vertical-align: top;" valign="top"> </td>
|
||
|
<td class="container"
|
||
|
style="font-family: Helvetica, sans-serif; font-size: 16px; vertical-align: top; max-width: 600px; padding: 0; padding-top: 24px; width: 600px; margin: 0 auto;"
|
||
|
width="600" valign="top">
|
||
|
<div class="content"
|
||
|
style="box-sizing: border-box; display: block; margin: 0 auto; max-width: 600px; padding: 0;">
|
||
|
|
||
|
<span class="preheader"
|
||
|
style="color: transparent; display: none; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;">This is preheader text. Some clients will show this text as a preview.</span>
|
||
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="main"
|
||
|
style="border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #ffffff; border: 1px solid #eaebed; border-radius: 16px; width: 100%;"
|
||
|
width="100%">
|
||
|
|
||
|
<tr>
|
||
|
<td class="wrapper"
|
||
|
style="font-family: Helvetica, sans-serif; font-size: 16px; vertical-align: top; box-sizing: border-box; padding: 24px;"
|
||
|
valign="top">
|
||
|
<p style="font-family: Helvetica, sans-serif; font-size: 16px; font-weight: normal; margin: 0; margin-bottom: 16px;">
|
||
|
{{ printf (gettext "Hi %s,") .CustomerFullName }}</p>
|
||
|
<p style="font-family: Helvetica, sans-serif; font-size: 16px; font-weight: normal; margin: 0; margin-bottom: 16px;">
|
||
|
{{( gettext "We have successfully received the payment for the booking with the following details:" )}}</p>
|
||
|
<p style="font-family: Helvetica, sans-serif; font-size: 16px; font-weight: normal; margin: 0; margin-bottom: 16px;">
|
||
|
{{ (printf ( gettext "Payment reference: <strong>%s</strong>") .PaymentReference) | raw }}
|
||
|
<br>
|
||
|
{{ (printf ( gettext "Accommodation: <strong>%s</strong>") .AccommodationName) | raw }}
|
||
|
<br>
|
||
|
{{ (printf ( gettext "Arrival Date: <strong>%s</strong>") .ArrivalDate) | raw }}
|
||
|
<br>
|
||
|
{{ (printf ( gettext "Departure Date: <strong>%s</strong>") .DepartureDate) | raw }}
|
||
|
<br>
|
||
|
{{ (printf ( gettext "Total: <strong>%s</strong>") .Total) | raw }}
|
||
|
</p>
|
||
|
<p style="font-family: Helvetica, sans-serif; font-size: 16px; font-weight: normal; margin: 0; margin-bottom: 16px;">
|
||
|
{{( gettext "Thank you for your booking, and see you soon!" )}}</p>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
{{ with .CompanyAddress -}}
|
||
|
<div class="footer" style="clear: both; padding-top: 24px; text-align: center; width: 100%;">
|
||
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0"
|
||
|
style="border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"
|
||
|
width="100%">
|
||
|
<tr>
|
||
|
<td class="content-block"
|
||
|
style="font-family: Helvetica, sans-serif; vertical-align: top; color: #9a9ea6; font-size: 16px; text-align: center;"
|
||
|
valign="top" align="center">
|
||
|
<span class="apple-link"
|
||
|
style="color: #9a9ea6; font-size: 16px; text-align: center;">{{ .TradeName }}, {{ .Address }}, {{ .PostalCode}} · {{ .City }} · {{ .Province }} · {{ .Country }}</span>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
{{- end }}
|
||
|
</div>
|
||
|
</td>
|
||
|
<td style="font-family: Helvetica, sans-serif; font-size: 16px; vertical-align: top;" valign="top"> </td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|