Brian
Brian

Reputation: 11

SMS API that allows you to specify FROM?

I'm wanting to move away from using $phonenumber@$provider domain because it is too limited in usability.

Is there a SMS service with a good API (prefer HTTP/s, XML, JSON) that allows you to send from a specific phone number?

The reason I want it to come from a specific phone number is because I have a Google Voice number I use for my business...

Upvotes: 1

Views: 524

Answers (2)

Emmanuel
Emmanuel

Reputation: 3583

Twilio will let you set the FROM number to any Twilio number that you own. Of course, you'd have to give up your Google Voice phone number. I'm pretty sure you won't find any SMS service that allows you to set the FROM number to an arbitrary number (just think of the mess it would cause).

See comment below indicating that the Google Voice number could be ported to Twilio.

Upvotes: 1

eggie5
eggie5

Reputation: 1960

Since you want to use your google voice phone number maybe you just want to send the SMS though google voice. One way to connect w/ google voice is to use the Asterisk software. You would use Asterisk to talk to google voice over the SIP protocal - documented here:

http://michigantelephone.wordpress.com/2010/05/21/how-to-use-google-voice-for-free-outgoing-calls-on-an-asteriskfreepbx-system-the-easy-way/

and

http://eggie5.com/10-installing-asterisk-on-osx

For example I did this and then I interface asterisk from ruby code and can make calls, sms, etc.

Upvotes: 1

Related Questions