diff options
Diffstat (limited to 'lib/mail/templates/pq-submitted-vendor.hbs')
| -rw-r--r-- | lib/mail/templates/pq-submitted-vendor.hbs | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/lib/mail/templates/pq-submitted-vendor.hbs b/lib/mail/templates/pq-submitted-vendor.hbs new file mode 100644 index 00000000..9cf8e133 --- /dev/null +++ b/lib/mail/templates/pq-submitted-vendor.hbs @@ -0,0 +1,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>
\ No newline at end of file |
