confirmation template

This commit is contained in:
Pavak Paul 2023-06-13 10:31:55 +05:30
parent a7af54114e
commit d90c4ed531

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Toor booking query for %%pagetitle%%</title>
<style>
.mailbodycontainer {
min-height:100%;
width:90%;
max-width:750px;
margin: auto;
padding:20px 0;
}
a {
text-decoration: none;
color: #8332ac;
}
@media (max-width:540px) {
.mailbodycontainer{
width: 95%;
}
}
</style>
</head>
<body>
<!-- name
phone
email
bookingdate
timehour
timeminute
timeampm
notes
pagetitle
pageurl -->
<div class="mailbodycontainer">
<p>Hi %%name%%, we have received your tour booking query for <a href="%%pageurl%%">%%pagetitle%%</a> on %%bookingdate%% at %%timehour%%:%%timeminute%% %%timeampm%%. We will reach out to you soon about the confirmation.</p>
<p>Have a great day!</p>
</div>
</body>
</html>