diff --git a/app/Http/Controllers/Qr/IntegrationsController.php b/app/Http/Controllers/Qr/IntegrationsController.php index 7adb7d0..3159422 100644 --- a/app/Http/Controllers/Qr/IntegrationsController.php +++ b/app/Http/Controllers/Qr/IntegrationsController.php @@ -42,7 +42,7 @@ class IntegrationsController extends Controller return back()->withInput()->with('error', $result['error'] ?? 'Could not save SMS credentials.'); } - return back()->with('success', 'Ladill SMS connected. Outbound attendee SMS will use your key and sender ID.'); + return back()->with('success', 'SMS credentials saved.'); } public function disconnectSms(MessagingCredentialsService $credentials): RedirectResponse @@ -50,7 +50,7 @@ class IntegrationsController extends Controller $account = ladill_account(); $credentials->disconnectSms((string) $account->public_id); - return back()->with('success', 'Ladill SMS disconnected.'); + return back()->with('success', 'SMS disconnected.'); } public function saveBird(Request $request, MessagingCredentialsService $credentials): RedirectResponse @@ -72,10 +72,10 @@ class IntegrationsController extends Controller ); if (! ($result['ok'] ?? false)) { - return back()->withInput()->with('error', $result['error'] ?? 'Could not save Bird credentials.'); + return back()->withInput()->with('error', $result['error'] ?? 'Could not save email credentials.'); } - return back()->with('success', 'Ladill Bird connected. Outbound attendee email will use your key and from address.'); + return back()->with('success', 'Email credentials saved.'); } public function disconnectBird(MessagingCredentialsService $credentials): RedirectResponse @@ -83,7 +83,7 @@ class IntegrationsController extends Controller $account = ladill_account(); $credentials->disconnectBird((string) $account->public_id); - return back()->with('success', 'Ladill Bird disconnected.'); + return back()->with('success', 'Email disconnected.'); } public function previewSenders(Request $request, CustomerSmsClient $sms): JsonResponse diff --git a/resources/views/events/attendees.blade.php b/resources/views/events/attendees.blade.php index 09448a7..0df6529 100644 --- a/resources/views/events/attendees.blade.php +++ b/resources/views/events/attendees.blade.php @@ -54,7 +54,7 @@
Message attendees
-Send programme links, virtual join links, or both. Uses your connected Ladill SMS and Bird keys. Manage integrations
+Send programme links, virtual join links, or both. Requires SMS and email credentials. Manage integrations
recipients · diff --git a/resources/views/qr/account/integrations.blade.php b/resources/views/qr/account/integrations.blade.php index 3c584db..2ba3472 100644 --- a/resources/views/qr/account/integrations.blade.php +++ b/resources/views/qr/account/integrations.blade.php @@ -4,11 +4,11 @@
- Connect your own - Ladill SMS + Configure + SMS and - Ladill Bird - API keys so attendee messages bill your wallets and send under your brand. + email + credentials for outbound messaging.
@if (session('success')) @@ -20,8 +20,8 @@Paste an SMS API key (lsk_sms_live_…) and an approved sender ID from sms.ladill.com.
+API key and approved sender ID.
@if ($credential->hasValidSms())Paste a Bird API key (lsk_live_…) plus a from address on a verified domain from bird.ladill.com.
+API key and from address on a verified domain.
@if ($credential->hasValidBird())Connect your Ladill SMS and Bird API keys for attendee and speaker messaging.
+Configure SMS and email credentials for outbound messages.
Open messaging integrations →