Files
ladill-care/config/smtp.php
T
isaaccladandCursor f1e28c7af8
Deploy Ladill Care / deploy (push) Successful in 37s
Add per-customer SMS and Bird Integrations for patient messaging.
Patient SMS/email now use encrypted tenant keys via the platform relay instead of shared platform Care API keys.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 17:05:54 +00:00

10 lines
367 B
PHP

<?php
return [
'platform_api_url' => env('SMTP_PLATFORM_API_URL', 'https://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'),
'from' => env('CARE_SMTP_FROM', 'care@ladill.com'),
'from_name' => env('CARE_SMTP_FROM_NAME', 'Ladill Care'),
];