Skip to content

Instantly share code, notes, and snippets.

@OliPassey
Created June 6, 2023 02:20
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 OliPassey/9ac6f450b794c05c4860ab4324e321be to your computer and use it in GitHub Desktop.
Save OliPassey/9ac6f450b794c05c4860ab4324e321be to your computer and use it in GitHub Desktop.
HTML template for a power automate auto-standup email.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weekly Update</title>
<style>
/* Define your styles here */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
.banner {
height: auto;
margin-bottom: 20px;
}
.title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
background-color: #e6f2ff;
padding: 10px;
}
.announcement {
margin-bottom: 20px;
background-color: #fdece6;
padding: 10px;
}
.standup-summary {
margin-bottom: 20px;
background-color: #eaf7f1;
padding: 10px;
}
.footer {
font-size: 12px;
margin-top: 40px;
color: #888;
background-color: #f2f2f2;
padding: 10px;
}
</style>
</head>
<body>
<table>
<tr>
<td>
<img src="https://olipassey.me.uk/wp-content/uploads/2022/05/image.jpeg" alt="Weekly Update Banner" class="banner">
</td>
<td>
<h1>Company Name</h1>
<h2>Weekly Update</h2>
</td>
</tr>
</table>
<div class="announcement">
<h3>Announcements:</h3>
<p>@{variables('corporateAnnouncement')}</p>
</div>
<div class="standup-summary">
<h3>Stand Up Information:</h3>
<p>@{variables('emailBody')}</p>
</div>
<div class="footer">
<p>This email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please delete all copies and notify the sender immediately. Any unauthorized review, use, disclosure, or distribution is prohibited. Please note that the email is sent in compliance with GDPR under legitimate interest.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment