From 23f810b48178135ed7842c935520f52131fa775a Mon Sep 17 00:00:00 2001 From: Joseph Helela Date: Mon, 7 Sep 2020 23:00:31 +0300 Subject: [PATCH] Adding Infobip SMS Gateway --- src/includes/functions.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/includes/functions.inc.php b/src/includes/functions.inc.php index 59717599..b407c526 100644 --- a/src/includes/functions.inc.php +++ b/src/includes/functions.inc.php @@ -755,6 +755,9 @@ namespace { case 'smsglobal': $sms = new \psm\Txtmsg\Smsglobal(); break; + case 'infobip': + $sms = new \psm\Txtmsg\Infobip(); + break; case 'freevoipdeal': $sms = new \psm\Txtmsg\FreeVoipDeal(); break;