feat(repairs): automatic repair status emails

This commit is contained in:
Schubert Ferenc 2026-07-04 22:58:47 +02:00
parent 3ed6596bf0
commit c58e212e3a
21 changed files with 525 additions and 36 deletions

View file

@ -120,7 +120,9 @@ export interface RepairNotificationEvent {
channel: string;
recipient: string;
subject: string;
template: string;
status: "pending" | "sent" | "failed" | "skipped";
success: boolean;
error_message: string | null;
created_at: string;
sent_at: string | null;