Reputation: 608
i need to know is it possible or is there any way to submit a Html form through SMS from an application on android device without internet connection and receive it through SMS and store it on database with my application ? i know i should have access to local GSM service provides but the main point is about the end users and i should consider that they don't have access to internet and the should be able to send form through SMS, so if you have any idea or solution let me know please.
i found some API and solution for this issue but seems they need to have internet connection for end user:
Upvotes: 0
Views: 324
Reputation: 260
You need to do the following in application:
In Server side:
But remember it will gets a big cost.
Upvotes: 1
Reputation: 1203
SMS is restricted to 160 characters per SMS. I'm assuming that your subscribers are going to be charged for each SMS (unless you have an agreement with the GSM service provider to zero-rate the SMSs). Generally, the SMSs sent by your application need to be as few as possible. Sending an HTML form is expensive since it sends a lot of useless information.
Do this:
Upvotes: 1