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.
This commit is contained in:
parent
4eadaea6c6
commit
0ae35f6c8f
1 changed files with 16 additions and 0 deletions
16
custom/listmonk-config.example.php
Normal file
16
custom/listmonk-config.example.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?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'
|
||||
]
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue