From d8087fb04211cfe92406bc1c977d59cd8e057bfd Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 10 Aug 2026 16:10:23 -0400 Subject: [PATCH] feat(FOUR-32617): variable to disable the sendEmail by task --- config/app.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/app.php b/config/app.php index b3c5891f98..e9769ddc0a 100644 --- a/config/app.php +++ b/config/app.php @@ -139,6 +139,9 @@ // PM Analytics Chart 'pm_analytics_chart' => env('PM_ANALYTICS_CHART', 'https://localhost'), + // When is true, task email notifications per defaulta are sent. + 'email_tasks_default_enabled' => env('EMAIL_TASKS_DEFAULT_ENABLED', 'true'), + // When true, email notifications are sent even when the assigned user matches the current user. 'notifications_send_to_same_user' => env('NOTIFICATIONS_SEND_TO_SAME_USER', 'true'),