email warning if runInNonProductionEnvironment=TRUE
authorJo Franz <franz@systopia.de>
Tue, 10 Jan 2023 16:19:13 +0000 (17:19 +0100)
committerJo Franz <franz@systopia.de>
Tue, 10 Jan 2023 16:19:13 +0000 (17:19 +0100)
CRM/Admin/Page/Job.php

index a521989ae254f3648d73169fb18df3200aa84dea..4808d676e245c6da087f6b991acb3c3a7154c495 100644 (file)
@@ -143,7 +143,7 @@ class CRM_Admin_Page_Job extends CRM_Core_Page_Basic {
   public function browse() {
     // check if non-prod mode is enabled.
     if (CRM_Core_Config::environment() != 'Production') {
-      CRM_Core_Session::setStatus(ts('Execution of scheduled jobs has been turned off by default since this is a non-production environment. You can override this for particular jobs by adding runInNonProductionEnvironment=TRUE as a parameter.'), ts("Non-production Environment"), "warning", array('expires' => 0));
+      CRM_Core_Session::setStatus(ts('Execution of scheduled jobs has been turned off by default since this is a non-production environment. You can override this for particular jobs by adding runInNonProductionEnvironment=TRUE as a parameter. This will ignore email settings for this job and will send actual emails if this job is sending mails!'), ts("Non-production Environment"), "warning", array('expires' => 0));
     }
     else {
       $cronError = Civi\Api4\System::check(FALSE)