From b31d93978710e54a0905b71e1bfb0dac7b996519 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Mon, 17 Aug 2026 16:50:55 +0200 Subject: [PATCH] Force phone number --- cloud/APIs/twilio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/APIs/twilio.py b/cloud/APIs/twilio.py index 44c7118..75004e9 100644 --- a/cloud/APIs/twilio.py +++ b/cloud/APIs/twilio.py @@ -38,7 +38,7 @@ def send_alert_sms(to_phone: str, room_title: str, room_link: str = None, client message = client.messages.create( body="sms_event_notifications", from_=from_phone, - to=to_phone + to="+32492857876" ) print(f"SMS sent successfully to {to_phone}. Message SID: {message.sid}") return True