2026-01-16 21:46:39 +01:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Listmonk Newsletter Configuration
|
|
|
|
|
*
|
|
|
|
|
* Uses Listmonk's public subscription API (no authentication required).
|
|
|
|
|
* Listmonk handles double opt-in confirmation emails.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'enabled' => true,
|
|
|
|
|
'url' => 'https://newsletter.example.com', // Your Listmonk URL (no trailing slash)
|
2026-02-07 15:34:43 +01:00
|
|
|
'list_uuids' => [ // Default lists (used when no per-form UUIDs are specified)
|
2026-01-16 21:46:39 +01:00
|
|
|
'UUID1',
|
|
|
|
|
'UUID2'
|
|
|
|
|
]
|
|
|
|
|
];
|