summaryrefslogtreecommitdiff
path: root/lib/mail/templates/pq.hbs
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-04-28 02:13:30 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-04-28 02:13:30 +0000
commitef4c533ebacc2cdc97e518f30e9a9350004fcdfb (patch)
tree345251a3ed0f4429716fa5edaa31024d8f4cb560 /lib/mail/templates/pq.hbs
parent9ceed79cf32c896f8a998399bf1b296506b2cd4a (diff)
~20250428 작업사항
Diffstat (limited to 'lib/mail/templates/pq.hbs')
-rw-r--r--lib/mail/templates/pq.hbs86
1 files changed, 86 insertions, 0 deletions
diff --git a/lib/mail/templates/pq.hbs b/lib/mail/templates/pq.hbs
new file mode 100644
index 00000000..78fb6fcd
--- /dev/null
+++ b/lib/mail/templates/pq.hbs
@@ -0,0 +1,86 @@
+<!DOCTYPE html>
+<html lang="{{language}}">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>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;
+ }
+ </style>
+</head>
+<body>
+ <div class="header">
+ <h1>eVCP Pre-Qualification Invitation</h1>
+ </div>
+
+ <div class="content">
+ <p>Dear {{vendorName}},</p>
+
+ <p>You have been invited to submit your Pre-Qualification (PQ) information for our vendor database. Completing this process will allow us to consider your company for future projects and procurement opportunities.</p>
+
+ <p>To submit your PQ information:</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 in your dashboard</li>
+ <li>Complete all required information about your company, capabilities, and experience</li>
+ </ol>
+
+ <center>
+ <a href="{{loginUrl}}" class="button">Access Vendor Portal</a>
+ </center>
+
+ <p>Maintaining up-to-date PQ information in our system is essential for your company to be considered for upcoming opportunities.</p>
+
+ <p>If you have any questions or need assistance, please contact our vendor management team.</p>
+
+ <p>We look forward to learning more about your company and potentially working together on future projects.</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> \ No newline at end of file