summaryrefslogtreecommitdiff
path: root/lib/mail/templates/project-pq.hbs
blob: 2ecbd3a2b65376f052f3ee71b1f008cd7952ad1d (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
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="{{language}}">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Project PQ Invitation</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            background-color: #0066cc;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 5px 5px 0 0;
        }
        .content {
            background-color: #f9f9f9;
            padding: 20px;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
        }
        .footer {
            background-color: #f1f1f1;
            padding: 15px;
            text-align: center;
            font-size: 14px;
            border-radius: 0 0 5px 5px;
            border: 1px solid #ddd;
        }
        .button {
            display: inline-block;
            background-color: #0066cc;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            margin: 20px 0;
            font-weight: bold;
        }
        .project-info {
            background-color: #e6f2ff;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
        }
    </style>
</head>
<body>
    <div class="header">
        <h1>eVCP Project PQ Invitation</h1>
    </div>
    
    <div class="content">
        <p>Dear {{vendorName}},</p>
        
        <p>You have been selected to participate in the Pre-Qualification (PQ) process for the following project:</p>
        
        <div class="project-info">
            <p><strong>Project Code:</strong> {{projectCode}}</p>
            <p><strong>Project Name:</strong> {{projectName}}</p>
        </div>
        
        <p>This is an important step in our vendor selection process. Please complete the Project PQ questionnaire at your earliest convenience.</p>
        
        <p>To submit your Project PQ:</p>
        <ol>
            <li>Click on the button below to access our vendor portal</li>
            <li>Log in to your account (or register if you haven't already)</li>
            <li>Navigate to the PQ section where you'll find the Project PQ for {{projectCode}}</li>
            <li>Complete all required information</li>
        </ol>
        
        <center>
            <a href="{{loginUrl}}" class="button">Access Vendor Portal</a>
        </center>
        
        <p>Please note that completing this Project PQ is a prerequisite for being considered for this project.</p>
        
        <p>If you have any questions or need assistance, please contact our vendor management team.</p>
        
        <p>Thank you for your participation.</p>
        
        <p>Best regards,<br>
        The eVCP Team</p>
    </div>
    
    <div class="footer">
        <p>This is an automated email. Please do not reply to this message.</p>
        <p>&copy; eVCP Vendor Management System</p>
    </div>
</body>
</html>