From 4073f84f32d6f215d8e07d5fe6767dd49c5137c6 Mon Sep 17 00:00:00 2001 From: Yinyin Liu Date: Thu, 11 Jul 2024 09:31:56 +0200 Subject: [PATCH] disable email to support team when there are 2 and more limb strings now --- csharp/App/Backend/Websockets/RabbitMQManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csharp/App/Backend/Websockets/RabbitMQManager.cs b/csharp/App/Backend/Websockets/RabbitMQManager.cs index 32296a7b0..fcca8a036 100644 --- a/csharp/App/Backend/Websockets/RabbitMQManager.cs +++ b/csharp/App/Backend/Websockets/RabbitMQManager.cs @@ -152,7 +152,8 @@ public static class RabbitMqManager $"Error created date and time: {alarm.Date} {alarm.Time}\n"+ $"\n"+ $"Thank you for your great support:)"; - Mailer.Send("InnovEnergy Support Team", recipient, subject, text); + // Disable this function now + //Mailer.Send("InnovEnergy Support Team", recipient, subject, text); } //Create a new error and add it to the database Db.HandleError(newError, installationId);