42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; 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>
|
|
</head>
|
|
|
|
<body>
|
|
<table border="0" cellspacing="1em" cellpadding="1em">
|
|
<tbody>
|
|
<? for (var i = 0; i < data.length; i++) { ?>
|
|
<tr>
|
|
<td style='margin: 0 1em 0 0;'>
|
|
<h4 style="margin: 0; padding-top: 12px;font-weight:normal">
|
|
<a style="color:rgb(63,138,191) !important;text-decoration:none;"
|
|
href="mailto:<?= data[i].email ?>"><?= data[i].from ?></a>
|
|
</h4>
|
|
<p style="margin: 0;">
|
|
at <?= Utilities.formatDate(data[i].date, Session.getScriptTimeZone(), "HH:mm 'on' MMM d") ?>
|
|
</p>
|
|
<p style="margin: 0;">
|
|
<? if(data[i].uns) { ?>
|
|
<a style="display:inline-block;color:rgb(255,255,255); padding:0.25em; background:rgb(63,138,191); border-radius: 5px !important;text-decoration:none;"
|
|
href="<?= data[i].uns ?>">unsubscribe</a>
|
|
<? } ?>
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p style="margin: 0; padding: 0;">
|
|
<a style='font-size:1.5em !important; color:rgb(22,22,22) !important; text-decoration:none;' href="<?= data[i].permalink?>"><?= data[i].subject ?></a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<? } ?>
|
|
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|