1
0
Files
breadcrumb-the-shire/templates/emails/de/handover_review_requested.html
aminovfariz c32a0f8c31 feat(helpdesk): Übergabe assignment workflow
- New statuses: under_review
- New DB fields: assigned_to, assigned_by, assigned_at, due_date (migration 012)
- HandoverNotificationService: emails on assign and review-request
- HandoverService: assign(), submitForReview(), resendNotification()
- Assign page: manager selects employee + due date, resend notification
- Create wizard: manager can assign during creation (step 1)
- Edit page: "Submit for review" button for assignee, assign link for manager
- List page: open/closed tabs, non-managers see only their assigned handovers
- Email templates: handover_assigned + handover_review_requested (de/en)
- i18n keys added for de and en

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-01 14:35:03 +02:00

30 lines
1.1 KiB
HTML

<!doctype html>
<html lang="de">
<body style="font-family: Arial, sans-serif; line-height: 1.5; color: #111;">
{{email_header}}
<p>Hallo {{manager_name}},</p>
<p><strong>{{assignee_name}}</strong> hat eine Übergabe zur Prüfung eingereicht.</p>
<table style="border-collapse: collapse; margin: 16px 0;">
<tr>
<td style="padding: 4px 12px 4px 0; color: #555;">Kunde:</td>
<td style="padding: 4px 0;"><strong>{{debitor_name}}</strong></td>
</tr>
<tr>
<td style="padding: 4px 12px 4px 0; color: #555;">Domain:</td>
<td style="padding: 4px 0;">{{domain_url}}</td>
</tr>
<tr>
<td style="padding: 4px 12px 4px 0; color: #555;">Eingereicht von:</td>
<td style="padding: 4px 0;">{{assignee_name}}</td>
</tr>
</table>
<p>
<a href="{{handover_url}}" style="display: inline-block; padding: 10px 20px; background: #2563eb; color: #fff; text-decoration: none; border-radius: 4px;">
Übergabe prüfen
</a>
</p>
<p>Viele Grüße<br>{{app_name}}</p>
{{email_footer}}
</body>
</html>