Deploy Ladill Events / deploy (push) Successful in 48s
Prefer platform suite messaging (channel=suite) for attendee email, fall back to Bird integrations; sync suite plan entitlements on subscribe/renew.
15 lines
633 B
PHP
15 lines
633 B
PHP
<?php
|
|
|
|
return [
|
|
'platform_api_url' => env('SMTP_PLATFORM_API_URL', 'https://ladill.com/api/smtp'),
|
|
'platform_api_key' => env('SMTP_API_KEY_EVENTS'),
|
|
'customer_relay_url' => env('SMTP_CUSTOMER_RELAY_URL', 'https://ladill.com/api/smtp'),
|
|
'from' => env('EVENTS_SMTP_FROM', 'events@ladill.com'),
|
|
'from_name' => env('EVENTS_SMTP_FROM_NAME', 'Ladill Events'),
|
|
// Deep link when suite path returns messaging_mailbox_required
|
|
'messaging_settings_url' => env(
|
|
'MESSAGING_SETTINGS_URL',
|
|
'https://account.ladill.com/account/settings/messaging?reason=messaging_mailbox_required&from=suite',
|
|
),
|
|
];
|