Validate Bird credentials against bird.ladill.com, not the monolith.
Deploy Ladill Care / deploy (push) Successful in 34s

Keys issued on Bird live in Bird’s DB; the old ladill.com relay always returned Invalid or missing API key.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-13 13:45:41 +00:00
co-authored by Cursor
parent d13d460e32
commit 898275ec05
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -51,9 +51,9 @@ SMS_CUSTOMER_RELAY_URL=https://ladill.com/api/sms
SMS_DEFAULT_SENDER_ID=Ladill
# Ladill Bird / SMTP (patient email uses customer keys via Integrations)
SMTP_PLATFORM_API_URL=https://ladill.com/api/smtp
SMTP_PLATFORM_API_URL=https://bird.ladill.com/api/smtp
SMTP_API_KEY_CARE=
SMTP_CUSTOMER_RELAY_URL=https://ladill.com/api/smtp
SMTP_CUSTOMER_RELAY_URL=https://bird.ladill.com/api/smtp
CARE_SMTP_FROM=care@ladill.com
CARE_SMTP_FROM_NAME="Ladill Care"
+2 -2
View File
@@ -1,9 +1,9 @@
<?php
return [
'platform_api_url' => env('SMTP_PLATFORM_API_URL', 'https://ladill.com/api/smtp'),
'platform_api_url' => env('SMTP_PLATFORM_API_URL', 'https://bird.ladill.com/api/smtp'),
'platform_api_key' => env('SMTP_API_KEY_CARE'),
'customer_relay_url' => env('SMTP_CUSTOMER_RELAY_URL', 'https://ladill.com/api/smtp'),
'customer_relay_url' => env('SMTP_CUSTOMER_RELAY_URL', 'https://bird.ladill.com/api/smtp'),
'from' => env('CARE_SMTP_FROM', 'care@ladill.com'),
'from_name' => env('CARE_SMTP_FROM_NAME', 'Ladill Care'),
];