Deploy Ladill Care / deploy (push) Successful in 37s
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>
10 lines
367 B
PHP
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'),
|
|
];
|