blob: 541a6137d93bec2106c361cf504415741a3c2627 (
plain)
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
|
<!-- file: templates/vendor-pq-status.hbs -->
<html>
<body style="font-family: sans-serif; margin: 0; padding: 0;">
<table width="100%" cellspacing="0" cellpadding="20" style="background-color: #f7f7f7;">
<tr>
<td>
<table width="600" cellspacing="0" cellpadding="20" style="background-color: #ffffff; margin: 0 auto;">
<tr>
<td style="text-align: center;">
<h1 style="margin-bottom: 0.5rem;">Vendor PQ Status Update</h1>
</td>
</tr>
<tr>
<td>
<p>Hello {{name}},</p>
<p>
Your vendor status has been updated to
<strong>{{status}}</strong>.
</p>
<p>
You can log in to see details and take further action:
<br />
<a href="{{loginUrl}}" style="color: #007bff; text-decoration: underline;">
Go to Portal
</a>
</p>
<p>
If you have any questions, feel free to contact us.
</p>
<p>Thank you,<br/>
The PQ Team
</p>
</td>
</tr>
<tr>
<td style="text-align: center; border-top: 1px solid #eee;">
<small style="color: #999;">
© 2023 MyCompany
</small>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|