Improve speaker invites and redesign roster add flow.
Deploy Ladill Events / deploy (push) Successful in 41s

Surface specific send failures, allow resend, use ladl.link portal URLs, and replace stacked speaker forms with a single add-to-list pattern.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 16:01:47 +00:00
co-authored by Cursor
parent fec24da7bd
commit 99ffc510f9
5 changed files with 209 additions and 62 deletions
+6 -1
View File
@@ -19,7 +19,7 @@ class PlatformEmailClient
public function send(string $ownerPublicId, string $to, string $subject, string $html, ?string $text = null): bool
{
if ($this->token() === '') {
if (! $this->isConfigured()) {
return false;
}
@@ -54,4 +54,9 @@ class PlatformEmailClient
return false;
}
}
public function isConfigured(): bool
{
return $this->token() !== '';
}
}