This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

SMS not received
#1
Hi,

We are using a LogicMachine5 Reactor GSM to send SMS in case of alarm of some variables. The script uses a for to send the message to multiple numbers, with a delay between them. You can see the code below (I changed the phone numbers with generic ones for security purposes).

The problem is that not every SMS is received. What could be causing this? Is there any way to check if the SMS is received?

Thank you in advance,
André Neves

Code:
require('user.sms') Nrs_Tlf={'123456789',        '987654321',      '147852369'} tab = string.split(name, ">") if value==1 then     Alarme="Alarme:\n"..tab[2].."\n"..timestamp elseif (value==2) then    Alarme="Alarme Reconhecido:\n"..tab[2].."\n"..timestamp elseif (value==3) then    Alarme="Alarme Reposto:\n"..tab[2].."\n"..timestamp end if (value<4 and value>0) then     for i = 1, 3, 1 do       sendsms(Nrs_Tlf[i],Alarme)       os.sleep(30)     end   log("SMS enviados") else   log("Out of bounds.") end
Reply


Messages In This Thread
SMS not received - by andrepneves@gmail.com - 20.03.2025, 14:49
RE: SMS not received - by admin - 21.03.2025, 07:59
RE: SMS not received - by admin - 26.05.2025, 06:11
RE: SMS not received - by admin - 26.05.2025, 11:56
RE: SMS not received - by admin - 26.05.2025, 12:30
RE: SMS not received - by admin - 26.05.2025, 14:20
RE: SMS not received - by admin - 03.06.2025, 12:27

Forum Jump: