diff options
Diffstat (limited to 'lib/mail/templates/negotiation-complete-notification.hbs')
| -rw-r--r-- | lib/mail/templates/negotiation-complete-notification.hbs | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/lib/mail/templates/negotiation-complete-notification.hbs b/lib/mail/templates/negotiation-complete-notification.hbs new file mode 100644 index 00000000..d82d312f --- /dev/null +++ b/lib/mail/templates/negotiation-complete-notification.hbs @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html lang="ko"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>GTC 기본계약서 협의 완료</title> +</head> +<body style="margin: 0; padding: 0; font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif; background-color: #f4f4f4;"> + <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color: #f4f4f4;"> + <tr> + <td style="padding: 20px 0;"> + <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600" style="margin: 0 auto; background-color: #ffffff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);"> + <!-- Header --> + <tr> + <td style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 30px; text-align: center; border-radius: 8px 8px 0 0;"> + <h1 style="margin: 0; color: #ffffff; font-size: 24px; font-weight: bold;"> + ✅ 협의가 완료되었습니다 + </h1> + </td> + </tr> + + <!-- Content --> + <tr> + <td style="padding: 40px 30px;"> + <p style="margin: 0 0 20px 0; font-size: 16px; line-height: 1.6; color: #333333;"> + 안녕하세요, <strong>{{recipientName}}</strong>님 + </p> + + <p style="margin: 0 0 20px 0; font-size: 15px; line-height: 1.6; color: #555555;"> + <strong>{{vendorName}}</strong>와(과)의 <strong>{{templateName}}</strong> 협의가 완료되었습니다. + </p> + + <div style="background-color: #f8f9fa; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0; border-radius: 4px;"> + <p style="margin: 0; font-size: 14px; color: #666666;"> + <strong style="color: #28a745;">✓ 협의 완료</strong><br> + 이제 법무검토 요청이 가능합니다. + </p> + </div> + + <!-- CTA Button --> + <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 30px 0;"> + <tr> + <td style="text-align: center;"> + <a href="{{contractUrl}}" style="display: inline-block; padding: 14px 40px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: bold; font-size: 16px; box-shadow: 0 4px 6px rgba(0,0,0,0.1);"> + 계약서 확인하기 + </a> + </td> + </tr> + </table> + + <p style="margin: 20px 0 0 0; font-size: 13px; line-height: 1.6; color: #777777;"> + 궁금하신 사항이 있으시면 언제든지 문의해 주세요. + </p> + </td> + </tr> + + <!-- Footer --> + <tr> + <td style="background-color: #f8f9fa; padding: 20px 30px; border-radius: 0 0 8px 8px; border-top: 1px solid #e9ecef;"> + <p style="margin: 0 0 10px 0; font-size: 12px; color: #999999; text-align: center;"> + 본 메일은 발신 전용입니다. 회신하지 마세요. + </p> + <p style="margin: 0; font-size: 12px; color: #999999; text-align: center;"> + © {{currentYear}} eVCP. All rights reserved. + </p> + <p style="margin: 10px 0 0 0; font-size: 12px; text-align: center;"> + <a href="{{systemUrl}}" style="color: #667eea; text-decoration: none;">eVCP 바로가기</a> + </p> + </td> + </tr> + </table> + </td> + </tr> + </table> +</body> +</html> + |
