blob: 3606bcdb8b9643b1cf294b3b7b4aa2852e72b7fb (
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
|
{{> header logoUrl=logoUrl }}
<h1 style="text-align:center; font-size:28px; margin-bottom:20px;">PQ Review Comments</h1>
<p style="font-size:16px;">Dear {{name}} ({{vendorCode}}),</p>
<p style="font-size:16px;">Thank you for submitting your PQ information. Our review team has completed the initial review and has requested some changes or additional information.</p>
<p style="font-size:16px;"><span style="color:#d14; font-weight:bold;">Action Required:</span> Please log in to your account and update your PQ submission based on the comments below.</p>
{{#if hasGeneralComment}}
<div style="margin:20px 0; padding:15px; background-color:#f9f9f9; border-left:4px solid #0071bc;">
<h3>General Comments:</h3>
<p>{{generalComment}}</p>
</div>
{{/if}}
<div style="margin:20px 0; padding:15px; background-color:#f9f9f9; border-left:4px solid #0071bc;">
<h3>Specific Item Comments ({{commentCount}}):</h3>
{{#each comments}}
<div style="margin-bottom:15px; border-bottom:1px solid #eee; padding-bottom:15px;">
<div>
<span style="font-weight:bold; color:#0071bc; display:inline-block; min-width:60px;">{{code}}</span>
<span style="font-weight:bold; color:#333;">{{checkPoint}}</span>
</div>
<p>{{text}}</p>
</div>
{{/each}}
</div>
<p style="font-size:16px;">Please review these comments and update your PQ submission.</p>
<div style="text-align:center; margin:20px 0;">
<a href="{{loginUrl}}" class="btn" style="padding:10px 20px; font-size:16px; background-color:#0071bc; color:#fff; text-decoration:none; border-radius:4px;">Log in to update your PQ</a>
</div>
<p style="font-size:16px;">If you have any questions, please contact our support team.</p>
<p style="font-size:16px;">Thank you,<br />PQ Review Team</p>
{{> footer logoUrl=logoUrl companyName=companyName year=currentYear }}
|