86 lines
4.9 KiB
HTML
86 lines
4.9 KiB
HTML
{{define "answer_approved.html"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Your answer was approved ✓</title>
|
|
</head>
|
|
<body style="margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background-color: #f5f5f5;">
|
|
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" style="background-color: #f5f5f5;">
|
|
<tr>
|
|
<td align="center" style="padding: 40px 20px;">
|
|
<table role="presentation" width="600" cellspacing="0" cellpadding="0" style="background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1);">
|
|
<!-- Header -->
|
|
<tr>
|
|
<td style="background-color: #1a2744; padding: 30px 40px; text-align: center;">
|
|
<h1 style="margin: 0; color: #ffffff; font-size: 24px; font-weight: 600; letter-spacing: 1px;">DEALSPACE</h1>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Content -->
|
|
<tr>
|
|
<td style="padding: 40px;">
|
|
<!-- Success Icon -->
|
|
<div style="text-align: center; margin-bottom: 25px;">
|
|
<div style="display: inline-block; width: 60px; height: 60px; background-color: #dcfce7; border-radius: 50%; line-height: 60px; font-size: 28px;">
|
|
✓
|
|
</div>
|
|
</div>
|
|
|
|
<h2 style="margin: 0 0 20px 0; color: #1a2744; font-size: 20px; font-weight: 600; text-align: center;">
|
|
Your answer was approved
|
|
</h2>
|
|
|
|
<p style="margin: 0 0 20px 0; color: #4a5568; font-size: 16px; line-height: 1.6;">
|
|
Hi{{if .RecipientName}} {{.RecipientName}}{{end}},
|
|
</p>
|
|
|
|
<p style="margin: 0 0 20px 0; color: #4a5568; font-size: 16px; line-height: 1.6;">
|
|
Great news! Your answer for <strong>{{.RequestTitle}}</strong> has been approved.
|
|
</p>
|
|
|
|
{{if .Published}}
|
|
<div style="background-color: #dcfce7; border-radius: 6px; padding: 15px 20px; margin: 25px 0;">
|
|
<p style="margin: 0; color: #166534; font-size: 14px;">
|
|
📁 <strong>Published to Data Room</strong> — Your response is now visible to authorized buyers.
|
|
</p>
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if .DataRoomURL}}
|
|
<!-- CTA Button -->
|
|
<table role="presentation" cellspacing="0" cellpadding="0" style="margin: 30px 0;">
|
|
<tr>
|
|
<td style="background-color: #c9a227; border-radius: 6px;">
|
|
<a href="{{.DataRoomURL}}" style="display: inline-block; padding: 16px 32px; color: #1a2744; font-size: 16px; font-weight: 600; text-decoration: none;">View in Data Room</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{{end}}
|
|
|
|
<p style="margin: 20px 0 0 0; color: #4a5568; font-size: 15px; line-height: 1.6;">
|
|
Thank you for your prompt response. Keep up the excellent work!
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Footer -->
|
|
<tr>
|
|
<td style="background-color: #1a2744; padding: 30px 40px; text-align: center;">
|
|
<p style="margin: 0 0 10px 0; color: #9ca3af; font-size: 12px;">
|
|
Questions? Contact <a href="mailto:support@muskepo.com" style="color: #c9a227; text-decoration: none;">support@muskepo.com</a>
|
|
</p>
|
|
<p style="margin: 0; color: #6b7280; font-size: 11px;">
|
|
© 2026 Dealspace · <a href="#" style="color: #6b7280; text-decoration: none;">Privacy Policy</a> · <a href="#" style="color: #6b7280; text-decoration: none;">Terms of Service</a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
{{end}}
|