Deploy Ladill Events / deploy (push) Successful in 28s
Attendee and speaker comms use encrypted tenant relay credentials and skip platform-key fallback and Bird wallet double-debit. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
377 B
PHP
10 lines
377 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'),
|
|
];
|