88 lines
5.2 KiB
HTML
88 lines
5.2 KiB
HTML
{{define "tasks_assigned.html"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>You have {{.Count}} new task{{if gt .Count 1}}s{{end}} on {{.ProjectName}}</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;">
|
|
<h2 style="margin: 0 0 20px 0; color: #1a2744; font-size: 20px; font-weight: 600;">
|
|
You have {{.Count}} new task{{if gt .Count 1}}s{{end}} on {{.ProjectName}}
|
|
</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 25px 0; color: #4a5568; font-size: 16px; line-height: 1.6;">
|
|
The following request{{if gt .Count 1}}s have{{else}} has{{end}} been assigned to you:
|
|
</p>
|
|
|
|
<!-- Task List -->
|
|
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" style="margin: 0 0 25px 0;">
|
|
{{range $i, $task := .Tasks}}
|
|
{{if lt $i 5}}
|
|
<tr>
|
|
<td style="padding: 12px 15px; border-left: 3px solid {{if eq $task.Priority "high"}}#dc2626{{else}}#c9a227{{end}}; background-color: #f8f9fa; margin-bottom: 8px;">
|
|
<p style="margin: 0; color: #1a2744; font-size: 15px; font-weight: 500;">{{$task.Title}}</p>
|
|
{{if $task.DueDate}}
|
|
<p style="margin: 4px 0 0 0; color: #6b7280; font-size: 13px;">Due: {{$task.DueDate}}{{if eq $task.Priority "high"}} · <span style="color: #dc2626;">High Priority</span>{{end}}</p>
|
|
{{end}}
|
|
</td>
|
|
</tr>
|
|
<tr><td style="height: 8px;"></td></tr>
|
|
{{end}}
|
|
{{end}}
|
|
</table>
|
|
|
|
{{if gt .Count 5}}
|
|
<p style="margin: 0 0 25px 0; color: #6b7280; font-size: 14px;">
|
|
...and {{sub .Count 5}} more
|
|
</p>
|
|
{{end}}
|
|
|
|
<!-- CTA Button -->
|
|
<table role="presentation" cellspacing="0" cellpadding="0" style="margin: 30px 0;">
|
|
<tr>
|
|
<td style="background-color: #c9a227; border-radius: 6px;">
|
|
<a href="{{.TasksURL}}" style="display: inline-block; padding: 16px 32px; color: #1a2744; font-size: 16px; font-weight: 600; text-decoration: none;">View My Tasks</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</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;">
|
|
You're receiving this because you're assigned to requests in {{.ProjectName}}.
|
|
</p>
|
|
<p style="margin: 0; color: #6b7280; font-size: 11px;">
|
|
© 2026 Dealspace · <a href="#" style="color: #6b7280; text-decoration: none;">Manage Notifications</a> · <a href="#" style="color: #6b7280; text-decoration: none;">Unsubscribe</a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
{{end}}
|