innhold/custom/listmonk-config.example.php
Ruben 0ae35f6c8f Add Listmonk newsletter configuration example
This provides a template for integrating Listmonk's public API
with the newsletter functionality, including list UUIDs and
basic configuration options.
2026-01-16 21:46:39 +01:00

16 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'
]
];