mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
20 lines
709 B
HTML
20 lines
709 B
HTML
|
|
{{~#*inline "format-date"~}}
|
|
{{date date format="MMM d, YYYY"}}
|
|
{{~/inline~}}
|
|
|
|
<html>
|
|
<body>
|
|
<h1>Your booking request was declined.</h1>
|
|
|
|
{{#with transaction}}
|
|
<p>Unfortunately {{provider.display-name}} decided to decline your booking request for {{listing.title}} from {{> format-date date=booking.start}} to {{> format-date date=booking.end}}. You have not been billed.</p>
|
|
{{/with}}
|
|
|
|
<p><a href="{{marketplace.url}}">Try to book something else instead</a></p>
|
|
|
|
<hr />
|
|
|
|
<p>You have received this email notification because you are a member of {{marketplace.name}}. If you no longer wish to receive these emails, please contact {{marketplace.name}} team.</p>
|
|
</body>
|
|
</html>
|