0
votes
0answers
124 views

How to send SMS through 'Dongle' using C++

I have a USB dongle connected to my laptop which is used to get the internet connection. No need to say it has a sim card and it is possible to send/receive SMS as well. I want to know how can I get ...
0
votes
1answer
100 views

Get the IMSI number or destination phone number from incomming message (SMS)

I am developing an application that requires the IMSI/phone number of the device(with multiple SIM cards) which receives an sms. This is basically for identification purpose of which SIM is receiving ...
0
votes
0answers
31 views

Illegal argument sending sms android

I'm trying to send an sms with an android application but on some devices I have this error when the sms is send: For exemple this program works fine on HTC wild fire but I have the error on samsung ...
1
vote
1answer
63 views

Get phone number of SMS sender, using Twilio

I am trying to retrieve the phone number of a user who sends SMS to my Twilio number, but I can't fetch it in my program. I have tried these: $message = ...
0
votes
1answer
224 views

How to make a call from linux with android phone? [closed]

I need to make a phone call and\or send SMS from my debian server.android phone is plugged to the server by USB cable. I can connect to the phone from the server via: USB, Bluetooth or WIFI(ssh). ...
0
votes
0answers
306 views

validate phone number for sms message in ios

apologies if this has been asked before - I couldn't find anything specific to this (surprisingly). I know how to use the people picker api to get an email address from the address book and validate ...
0
votes
1answer
270 views

How can I get my cell provider to let my application send SMS through an API [closed]

Question How can I use my cell phone provider (e.g. Fido in Canada, or AT&T in the US) to send SMS messages from a PHP application, programatically (from a server through an API) ? And I want to ...
0
votes
2answers
137 views

How to send a hyperlink to a mobile via SMS or MMS

I have been looking for a way to send a hyperlink of a URL with a different appearance to a mobile phone via SMS or MMS. The only example of this that i can think of is the following: ...
3
votes
1answer
461 views

Android: get user phone number by SMS or Google Account

In my Android app I'm trying to get the user's phone number. I tried the TelephonyManager solution but here in Europe 90% of the SIM cards have that field blank, so the function returns NULL. I think ...
0
votes
1answer
401 views

Android Contact and Phone number picker like in standard SMS functionality

I write application and I need select only one number of some contact but with it's name and userpic. But I have surfed and found only recommendations how to select one contact or one phone number. ...
0
votes
1answer
247 views

3G modem receives multiple SMS intermittently

I developed a Java application, which through a 3G modem I get the SMS's received. The problem is that several users to send SMS to this same number (about 25, 30 users). I noticed that the receipt of ...
3
votes
3answers
1k views

Finding the phone company of a cell phone number?

I have an application where people can give a phone number and it will send SMS texts to the phone number through EMail-SMS gateways. For this to work however, I need the phone company of the given ...
10
votes
2answers
601 views

Can you detect whether a device has phone capabilities (e.g. it can make voice calls/SMS) with JavaScript?

Is there any way to detect whether a mobile device is capable of making voice calls / SMS messages? This is important when applying tel: and sms: links in a web page. It is not enough to merely ...
3
votes
1answer
785 views

How can I send a text message/SMS with PHP? [duplicate]

Possible Duplicate: any good php tutorial on how to send sms to phones? I'm trying to figure out how I can send text messages/SMS messages with PHP to phones. Is there a way to do this ...
1
vote
5answers
567 views

How would you send a message from a web application to a phone as a text message, and vice versa?

I want a web application and a phone to be able to send messages to one another, and for the phone to receive the messages as text messages via SMS. What would be the easiest way to do this? I prefer ...
2
votes
1answer
130 views

Want to modify a database in response to a text message

Major companies often use texting to cast polls and votes. Was wondering if anyone had a civilian's implementation. I'm completely unfamiliar with SMS servers, but in general I thought it'd be ...
1
vote
0answers
581 views

how to send text message or phone call just like the eclipse emulator does

I'm making a program that is based on sending many notifications to the phone. I have come across a problem with making the phone act like its an actual call or message anyone know any other way to ...
0
votes
0answers
577 views

How to send vCard from email to a phone?

I am writing a web app that needs to send a vcard to a users phone via email. I have tried simply sending the vcard as text as well as a .vcf attachment and it didn't work. When I sent the text it ...
1
vote
2answers
1k views

how to send sms programmatically in iphone 2.0

I need to send email programmatically in iphone os 2.0. some where i found NSString *url = [NSString stringWithString: ...
3
votes
1answer
1k views

PHP - How to get phone carrier info from number

Are there any good, free ways to do this? I found fonefinder.net, which looks okay. If that's my best best, how can I query it with a phone number and get the returned carrier? (I don't see an API, ...
0
votes
1answer
960 views

Sending SMS with GSM phone\modem using Objective C

Im new with Objective C but a veteran of C# & VB.Net. Is there an available API or functionality in cocoa where i can communicate with my GSM Phone to listen to any incoming SMS messages and be ...
9
votes
11answers
14k views

Web based API that can tell me if a number is a landline or cell phone?

My application sends SMS messages to people, but the numbers entered in as their cell phone are sometimes land lines (this is user error or the user not really knowing if the contact number they have ...