87 lines
2.0 KiB
HTML
87 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<meta property="og:title" content="Bulk Emails">
|
|
<title>Bulk Email Summary</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Atkinson Hyperlegible', Helvetica, Arial, sans-serif;
|
|
color: #161616;
|
|
margin: 0;
|
|
padding: 1em;
|
|
background-color: #f9f9f9;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 1em;
|
|
}
|
|
td {
|
|
vertical-align: top;
|
|
padding: 1em;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
.email-from h4 {
|
|
margin: 0;
|
|
padding-top: 12px;
|
|
font-weight: normal;
|
|
}
|
|
.email-from a {
|
|
color: #3f8abf;
|
|
text-decoration: none;
|
|
}
|
|
.email-time {
|
|
margin: 0;
|
|
color: #555;
|
|
}
|
|
.unsubscribe a {
|
|
display: inline-block;
|
|
color: #fff;
|
|
padding: 0.25em 0.5em;
|
|
background-color: #3f8abf;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-size: 0.9em;
|
|
}
|
|
.email-subject a {
|
|
font-size: 1.5em;
|
|
color: #161616;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<table>
|
|
<tbody>
|
|
<? for (var i = 0; i < data.length; i++) { ?>
|
|
<tr>
|
|
<td>
|
|
<div class="email-from">
|
|
<h4>
|
|
<a href="mailto:<?= data[i].email ?>"><?= data[i].from ?></a>
|
|
</h4>
|
|
</div>
|
|
<p class="email-time">
|
|
at <?= Utilities.formatDate(data[i].date, Session.getScriptTimeZone(), "HH:mm 'on' MMM d") ?>
|
|
</p>
|
|
<? if (data[i].uns) { ?>
|
|
<p class="unsubscribe">
|
|
<a href="<?= data[i].uns ?>">unsubscribe</a>
|
|
</p>
|
|
<? } ?>
|
|
</td>
|
|
<td class="email-subject">
|
|
<p style="margin: 0;">
|
|
<a href="<?= data[i].permalink ?>"><?= data[i].subject ?></a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<? } ?>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|