summaryrefslogtreecommitdiff
path: root/lib/mail/templates/pq-submitted-vendor.hbs
blob: 9cf8e1332989daf82e8a972452364549f5ce8e1c (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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>PQ Submission Confirmation</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      padding: 20px;
      max-width: 600px;
      margin: 0 auto;
    }
    .header {
      background-color: #0070f3;
      color: white;
      padding: 15px;
      text-align: center;
      margin-bottom: 20px;
      border-radius: 5px;
    }
    .content {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 5px;
      margin-bottom: 20px;
    }
    .details {
      margin: 15px 0;
    }
    .details p {
      margin: 5px 0;
    }
    .button {
      display: inline-block;
      background-color: #0070f3;
      color: white;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 5px;
      margin: 20px 0;
      text-align: center;
    }
    .footer {
      text-align: center;
      font-size: 12px;
      color: #777;
      margin-top: 30px;
    }
    .success-message {
      padding: 15px;
      background-color: #dff0d8;
      border-left: 4px solid #5cb85c;
      margin-bottom: 20px;
    }
  </style>
</head>
<body>
  <div class="header">
    <h1>PQ Submission Confirmation</h1>
  </div>

  <div class="content">
    <div class="success-message">
      <p>Thank you! Your {{#if isProjectPQ}}project-specific{{else}}general{{/if}} PQ has been successfully submitted.</p>
    </div>
    
    <h2>Submission Details</h2>
    
    <div class="details">
      <p><strong>Vendor Name:</strong> {{vendorName}}</p>
      {{#if isProjectPQ}}
      <p><strong>Project Name:</strong> {{projectName}}</p>
      {{/if}}
      <p><strong>Submission Date:</strong> {{submittedDate}}</p>
    </div>
    
    <p>Our team will review your submission and contact you if any additional information is needed.</p>
    
    <p>You can access your dashboard to track the status of your submissions and manage your vendor profile.</p>
    
    <a href="{{portalUrl}}" class="button">Go to Vendor Dashboard</a>
  </div>

  <div class="footer">
    <p>This is an automated confirmation from the eVCP system. Please do not reply to this email.</p>
    <p>If you have any questions, please contact your procurement representative.</p>
    <p>© {{currentYear}} eVCP - Vendor Compliance Portal</p>
  </div>
</body>
</html>