diff options
Diffstat (limited to 'lib/mail/templates/bidding-disposal.hbs')
| -rw-r--r-- | lib/mail/templates/bidding-disposal.hbs | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/mail/templates/bidding-disposal.hbs b/lib/mail/templates/bidding-disposal.hbs new file mode 100644 index 00000000..5e8f16ee --- /dev/null +++ b/lib/mail/templates/bidding-disposal.hbs @@ -0,0 +1,55 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>유찰 안내</title> + <style> + body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; } + .container { max-width: 600px; margin: 0 auto; padding: 20px; } + .header { background-color: #f8f9fa; padding: 20px; border-radius: 8px; margin-bottom: 20px; } + .content { margin: 20px 0; } + .highlight { background-color: #f8d7da; padding: 15px; border-left: 4px solid #dc3545; margin: 15px 0; } + .footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; font-size: 12px; color: #666; } + </style> +</head> +<body> + <div class="container"> + <div class="header"> + <h1>유찰 안내</h1> + <p><strong>입찰 번호:</strong> {{biddingNumber}}</p> + <p><strong>입찰명:</strong> {{title}}</p> + </div> + + <div class="content"> + <p>안녕하세요, {{companyName}} 담당자님</p> + + <p>다음 입찰에 대하여 유찰 처리되었음을 안내드립니다.</p> + + <div class="highlight"> + <h3>유찰 입찰 정보</h3> + <ul> + <li><strong>프로젝트:</strong> {{projectName}}</li> + <li><strong>품목:</strong> {{itemName}}</li> + <li><strong>입찰 유형:</strong> {{biddingType}}</li> + <li><strong>처리일:</strong> {{processedDate}}</li> + </ul> + </div> + + {{#if reason}} + <p><strong>유찰 사유:</strong></p> + <p>{{reason}}</p> + {{/if}} + + <p>향후 재입찰이 진행될 경우 별도 안내를 드릴 예정입니다.</p> + + <p>입찰에 참여해 주셔서 감사합니다.</p> + </div> + + <div class="footer"> + <p><strong>담당자:</strong> {{managerName}} ({{managerEmail}}, {{managerPhone}})</p> + <p>본 메일은 시스템에서 자동 발송된 메일입니다.</p> + </div> + </div> +</body> +</html> |
