fix(email): use client/org name as From display, not Ladill product
Deploy Ladill Meet / deploy (push) Successful in 1m33s

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:29 +00:00
parent 23e355259b
commit 7c83aeb734
3 changed files with 14 additions and 2 deletions
@@ -135,8 +135,11 @@ class MeetNotificationService
? $room->scheduled_at->timezone($room->timezone)->format('M j, Y g:i A T')
: 'Instant meeting';
$orgName = trim((string) ($room->organization?->name ?? ''));
$sessionLabel = $orgName !== '' ? $orgName.' meeting' : 'video meeting';
$lines = [
$host->name.' invited you to a Ladill Meet session.',
$host->name.' invited you to a '.$sessionLabel.'.',
'',
'Meeting: '.$room->title,
'When: '.$when,