If you want to be notified when new comments are submitted, you can enable email notifications:
'mauricerenck.komments.`notifications.email.enable' => true,
'mauricerenck.komments.`notifications.email.sender' => 'user@example.com',
'mauricerenck.komments.`notifications.email.emailReceiverList' => ['user1@example.com', 'user2@example.com'],
'mauricerenck.komments.`notifications.email.notificationMode' => 'instant',
If you would rather not get an email whenever a comment is saved, you can switch the notification mode to cron
. Define a secret in your config.php
'mauricerenck.komments.`notifications.email.notificationMode' => 'cron',
'mauricerenck.komments.`notifications.email.cronSecret' => 'SECRET',
Now you can use a cronjob to trigger the Komments Webhook URL:
https://you.tld/komments/cron/notification/SECRET
You may need to configure how kirby should send e-mails. Please have a look here: https://getkirby.com/docs/guide/emails#transport-configuration
Write a comment