fix(email): use client/org name as From display, not Ladill product
Deploy Ladill Queue / deploy (push) Successful in 43s

Customer-facing outbound mail should appear from the business (organizer,
clinic, company, location), not the Ladill product brand.
This commit is contained in:
isaacclad
2026-07-16 12:01:22 +00:00
parent 4647fd97e0
commit 17d888fdf7
3 changed files with 12 additions and 2 deletions
@@ -77,7 +77,8 @@ class QueueNotificationService
$this->sms->send($phone, $message);
}
if ($email) {
$this->email->send($email, 'Ladill Queue update', $message, null, null, $organization);
$orgName = trim((string) ($organization?->name ?? '')) ?: 'Queue';
$this->email->send($email, $orgName.' — queue update', $message, $orgName, null, $organization);
}
}