-
Notifications
You must be signed in to change notification settings - Fork 2
/
keas-expiring-team.html
76 lines (70 loc) · 2.18 KB
/
keas-expiring-team.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<style type="text/css">
body,
html,
.body {
background: #f3f3f3 !important;
}
</style>
<container>
<spacer size="16"></spacer>
<row>
<columns>
<h1>The team @teamName has @count expiring @itemPluralize in PEAKS.</h1>
<p>Thanks for PEAKing at this email. It sPEAKS well of you.</p>
<spacer size="16"></spacer>
<h4>Notification Details</h4>
<table>
<thead>
<tr>
<th><b>Type</b></th>
<th><b># of expiring items</b></th>
</tr>
</thead>
<tbody>
@if(accessCount > 0)
{
<tr>
<td>Access</td>
<td>@accessCount</td>
</tr>
}
@if(keyCount > 0)
{
<tr>
<td>Key</td>
<td>@keyCount</td>
</tr>
}
@if(equipmentCount > 0)
{
<tr>
<td>Equipment</td>
<td>@equipmentCount</td>
</tr>
}
@if(worksationCount > 0)
{
<tr>
<td>Workstation</td>
<td>@workstationCount</td>
</tr>
}
</tbody>
</table>
<hr />
<p>Please review the full details under reports. Then contact the assigned individuals to either update the expiration date or return/check-in the above items.</p>
<hr />
</columns>
</row>
<div class="footer text-center">
<div>
<img src="https://peaks.ucdavis.edu/Images/peaksLogo.png" alt="">
</div>
<hr />
<div>
<p>
This email was automatically generated please do not reply to it as the mailbox is not monitored.
</p>
</div>
</div>
</container>