feat: calculate number of days for email reminder

This commit is contained in:
Björn Fromme
2025-01-14 08:40:37 +01:00
parent 029029db11
commit 7ee94fa193
3 changed files with 9 additions and 6 deletions
@@ -55,10 +55,11 @@ class DispositionReminderService
$this->mailer->createAndSendEmail([
'disposition' => $disposition,
'diffInDays' => 5,
], [
'to' => $teamer->getCommunication()->getEmail(),
'subject' => 'Reminder: Dein Einsatz '.$destination,
'template' => 'email/reminder_pre_disposition.html.twig',
'template' => 'email/reminder_disposition.html.twig',
]);
}