diff --git a/mod_birthdayreminder.py b/mod_birthdayreminder.py
index 95bccb7e8e6cfa4137489af31e0caa12e00c60fc..ac905fe4a97fe91ff692b038286912cde248aa19 100644
--- a/mod_birthdayreminder.py
+++ b/mod_birthdayreminder.py
@@ -86,7 +86,8 @@ class ModuleBirthdayReminder:
         today = datetime.today()
         format = "%d.%m.%Y"
         delta = 800
-        next_birthday = None
+        next_birthdays=[]
+        next_birthday_date = None
         birthday_next_year_string = ""
         for birthday in self.birthday_list[groupInfo["NAME"]]:
             # Dieses Jahr
@@ -95,7 +96,7 @@ class ModuleBirthdayReminder:
             
             delta_temp = (birthday_dt - today).days + 1 # Damit er bei 47h nicht 1 Tag sagt
             if 0 < delta_temp < delta:
-                next_birthday = birthday
+                next_birthday_date = birthday_dt
                 delta = delta_temp
             else:
                 # Nächstes Jahr (Für den Jahresüberlauf)
@@ -105,15 +106,36 @@ class ModuleBirthdayReminder:
                     birthday_next_year_string, format)
                 delta_temp = (birthday_next_year - today).days + 1  # Damit er bei 47h nicht 1 Tag sagt
                 if delta_temp < delta:
-                    next_birthday = birthday
+                    next_birthday_date = birthday_dt
                     delta = delta_temp
         message = "Niemand hat hier Geburtstag! Wir sind in einer Zeitschleife gefangen."
 
-        if next_birthday:
+        if next_birthday_date:
+            for birthday in self.birthday_list[groupInfo["NAME"]]:
+                # Dieses Jahr
+                birthday_string = f"{birthday.DATE}.{date.today().strftime('%Y')}"
+                birthday_dt = datetime.strptime(birthday_string, format)
+
+                if birthday_dt == next_birthday_date:
+                    next_birthdays.append(birthday)
+
             if delta == 1:
-                message = f"Morgen hat {next_birthday.PERSON} Geburtstag!🎉"
+                message = f"Morgen hat{next_birthdays[0].PERSON} Geburtstag!🎉"
+                if(len(next_birthdays)>1):
+                    message=f"Morgen haben"    
+                    for birthday in next_birthdays:
+                        message+=f" {birthday.PERSON} und"
+                    message = message[:-4]
+                    message+=" Geburtstag!🎉"
             else:
-                message = f"Als nächstes hat {next_birthday.PERSON} am {next_birthday.DATE} Geburtstag (noch {delta} Tage)"
+                message = f"Als nächstes hat {next_birthdays.PERSON} am {next_birthdays.DATE} Geburtstag (noch {delta} Tage)"
+                
+                if(len(next_birthdays)>1):
+                    message=f"Als nächstes haben"    
+                    for birthday in next_birthdays:
+                        message+=f" {birthday.PERSON} und"
+                    message = message[:-4]
+                    message+=" am {next_birthdays.DATE} Geburtstag (noch {delta} Tage)"
         return message
 
     def get_birthdaylist(self, groupInfo):
diff --git a/signalbot.py b/signalbot.py
index 37858e07c4e885fcaf707a2798c37794cc466a78..b43c2d84eea63fd97dd2bf403b9b1aac679cee1e 100755
--- a/signalbot.py
+++ b/signalbot.py
@@ -6,7 +6,8 @@ import json
 import logging
 import random
 import time
-from datetime import date, calendar
+import calendar
+from datetime import date
 from threading import Thread
 
 import paho.mqtt.client as mqtt  # EPL V1.0