Deploy Ladill Care / deploy (push) Successful in 40s
Prefer platform suite messaging for patient email/SMS, fall back to product keys; write suite entitlements on Pro wallet, prepaid, and renewal.
14 lines
555 B
PHP
14 lines
555 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'),
|
|
'messaging_settings_url' => env(
|
|
'MESSAGING_SETTINGS_URL',
|
|
'https://account.ladill.com/account/settings/messaging?reason=messaging_mailbox_required&from=suite',
|
|
),
|
|
];
|