diff --git a/daemon/nopaqued.py b/daemon/nopaqued.py
index 44fb96e445487504d25c6c7240ca91430f4264af..c57c8bda24a3bb07108f21b56ef52b7f71522096 100644
--- a/daemon/nopaqued.py
+++ b/daemon/nopaqued.py
@@ -2,6 +2,7 @@ from concurrent.futures import ThreadPoolExecutor
 from tasks.check_corpora import check_corpora
 from tasks.check_jobs import check_jobs
 from tasks.notify import notify
+import os
 
 
 # TODO: Check if thread is still alive and execute next thread after that
@@ -9,13 +10,15 @@ from tasks.notify import notify
 
 
 def nopaqued():
+    execute_notifications = os.environ.get('NOPAQUE_EXECUTE_NOTIFICATIONS')
     # executing background functions
     while True:
         with ThreadPoolExecutor(max_workers=3) as executor:
             executor.submit(check_jobs)
             executor.submit(check_corpora)
-            executor.submit(notify, True)  # If True mails are sent.
-            # If False no mails are sent.
+            executor.submit(notify, execute_notifications)
+            # If execute_notifications True mails are sent.
+            # If execute_notifications False no mails are sent.
             # But notification status will be set nonetheless.
 
 
diff --git a/nopaque.env.tpl b/nopaque.env.tpl
index ffea48bac873e8a472e870758b72d5d81d358c63..25cc5587f0a1f8a0b573a3e9e84a3560009e2739 100644
--- a/nopaque.env.tpl
+++ b/nopaque.env.tpl
@@ -27,6 +27,7 @@ NOPAQUE_DOMAIN=
 NOPAQUE_LOG_LEVEL=
 NOPAQUE_MAIL_SENDER=
 NOPAQUE_STORAGE=
+NOPAQUE_EXECUTE_NOTIFICATIONS=
 
 ### PostgreSQL ###
 POSTGRES_DB_NAME=