I hope I asked this correctly.
We created an mobile app using ionic. It can talk to the servers online. So far so good.
Then, a requirement - the app MUST be able to send something OFFLINE. Reason, the users are in a remote area where internet is not available.
With the HTTP POST not available, the only thing now is the SMS. And with the plugin, we are able to send SMS through the telcos of the phone.
Now, the problem, is there any example of the SMS Gateway that receives the SMS from our phone + processes them?
For example, let's say i am sending a json {name:'bob'} to the SMS Gateway, there should be some logic to process this SMS and the update the database in our own hosting server.
Any example of this kind of product/server?
EDIT
My original question is kind of confusing as I thought most third-party gateways are serving as 'sending SMS online only'.
But thanks to @TimCastelijns who points out something like 'Inbound SMS', which is what i wanted.
Basically, buy/rent a number from the gateway. The number, upon receiving SMS, will be able to POST message to our own web hosting servers.