diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-28 02:13:30 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-28 02:13:30 +0000 |
| commit | ef4c533ebacc2cdc97e518f30e9a9350004fcdfb (patch) | |
| tree | 345251a3ed0f4429716fa5edaa31024d8f4cb560 /lib/mail/templates/pq-submitted-admin.hbs | |
| parent | 9ceed79cf32c896f8a998399bf1b296506b2cd4a (diff) | |
~20250428 작업사항
Diffstat (limited to 'lib/mail/templates/pq-submitted-admin.hbs')
| -rw-r--r-- | lib/mail/templates/pq-submitted-admin.hbs | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/lib/mail/templates/pq-submitted-admin.hbs b/lib/mail/templates/pq-submitted-admin.hbs new file mode 100644 index 00000000..0db3d6e4 --- /dev/null +++ b/lib/mail/templates/pq-submitted-admin.hbs @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>PQ Submission Notification</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; + } + </style> +</head> +<body> + <div class="header"> + <h1>PQ Submission Notification</h1> + </div> + + <div class="content"> + <h2>New PQ Submission Received</h2> + + <p>A new {{#if isProjectPQ}}project-specific{{else}}general{{/if}} PQ has been submitted and is ready for your review.</p> + + <div class="details"> + <p><strong>Vendor Name:</strong> {{vendorName}}</p> + <p><strong>Vendor ID:</strong> {{vendorId}}</p> + {{#if isProjectPQ}} + <p><strong>Project Name:</strong> {{projectName}}</p> + <p><strong>Project ID:</strong> {{projectId}}</p> + {{/if}} + <p><strong>Submission Date:</strong> {{submittedDate}}</p> + </div> + + <p>Please review this submission at your earliest convenience.</p> + + <a href="{{adminUrl}}" class="button">Review PQ Submission</a> + </div> + + <div class="footer"> + <p>This is an automated notification from the eVCP system. Please do not reply to this email.</p> + <p>© {{currentYear}} eVCP - Vendor Compliance Portal</p> + </div> +</body> +</html>
\ No newline at end of file |
