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