17 lines
367 B
PHP
17 lines
367 B
PHP
|
|
<?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)
|
||
|
|
'list_uuids' => [
|
||
|
|
'UUID1',
|
||
|
|
'UUID2'
|
||
|
|
]
|
||
|
|
];
|