Use noreply@ladill.com for Events mail like other Ladill apps.
Deploy Ladill Events / deploy (push) Successful in 49s

Stop overriding the From display name with the event title; rely on MAIL_FROM_ADDRESS and MAIL_FROM_NAME only.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 17:20:45 +00:00
co-authored by Cursor
parent 0c5a1ddb23
commit 1746874aaa
4 changed files with 8 additions and 16 deletions
@@ -28,7 +28,6 @@ class EventEmailService
'Programme for '.$eventName,
'mail.notifications.event-programme',
compact('eventName', 'programmeUrl', 'attendeeName'),
$eventName,
$organizerEmail,
$organizerName,
);
@@ -49,7 +48,6 @@ class EventEmailService
'Join '.$eventName,
'mail.notifications.event-join',
compact('eventName', 'joinUrl', 'attendeeName'),
$eventName,
$organizerEmail,
$organizerName,
);
@@ -71,7 +69,6 @@ class EventEmailService
$eventName.' — programme & join link',
'mail.notifications.event-join-programme',
compact('eventName', 'joinUrl', 'programmeUrl', 'attendeeName'),
$eventName,
$organizerEmail,
$organizerName,
);
@@ -93,7 +90,6 @@ class EventEmailService
'Registration confirmed — '.$eventName,
'mail.notifications.event-registration-confirmed',
compact('eventName', 'badgeCode', 'joinUrl', 'attendeeName'),
$eventName,
$organizerEmail,
$organizerName,
);
@@ -118,7 +114,6 @@ class EventEmailService
'portalUrl' => $portalUrl,
'speakerName' => $speakerName,
],
$eventName,
$organizerEmail,
$organizerName,
);
@@ -131,7 +126,6 @@ class EventEmailService
string $subject,
string $view,
array $viewData,
?string $fromDisplayName = null,
?string $replyToEmail = null,
?string $replyToName = null,
): bool {
@@ -144,7 +138,6 @@ class EventEmailService
$subject,
$html,
$text,
$fromDisplayName,
$replyToEmail,
$replyToName,
);