Skip to content

Instantly share code, notes, and snippets.

@kurtkaiser
Created July 25, 2020 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurtkaiser/bd5ee91f1b1b4c5bd7221ac2501e83a6 to your computer and use it in GitHub Desktop.
Save kurtkaiser/bd5ee91f1b1b4c5bd7221ac2501e83a6 to your computer and use it in GitHub Desktop.
Easy Google Calendar Room Reservation System - No Coding Required - Google Apps Script for Video Tutorial
<!DOCTYPE html>
<html>
<head>
<style>
.box {
text-align: center;
font-family: Helvetica;
width: 300px;
margin: 8px;
margin-left: auto;
margin-right: auto;
padding: 10px;
border: 3px outset rgba(0, 0, 0, 0.8);
}
#header {
background-color: #ececec;
}
#content {
background-color: white;
}
</style>
<base target="_top">
</head>
<body >
<div class="box" id="header">
<img src=
"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Calendar_font_awesome.svg/240px-Calendar_font_awesome.svg.png"
width="80" style="margin:10px 0px">
<h2> Reservation <?= messageTitle ?></h2>
</div>
<div id="content" class="box" >
<h3>
<?= messageBody ?>
</h3>
<h3>
Start Date: <?= startDate ?>
<br>
End Date: <?= endDate ?>
<br>
Name: <?= clientName ?>
</h3>
</div>
<center> <p style="font-size:12px">Coded by
<a href="https://www.linkedin.com/in/kurtkaiser/">
Kurt Kaiser</a><br></p>
</center>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment