Added the ability to send notifications by email when a new review is added.

This commit is contained in:
2024-07-27 00:29:28 +05:00
parent c84ed9f12b
commit 46da639055
7 changed files with 112 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
<?php
return [
/**
* Enable new review alerts.
*/
'mail_notifications' => (bool) env('FEEDBACK_MAIL_NOTIFICATIONS', false),
'mail_to' => env('FEEDBACK_MAIL_TO', null),
];