5

Does anyone know of a service that will send SMS messages over the internet, and can be automated?

Prefer service to:

  • Be free
  • Have an API freely available and highly modular
  • Be open source

Like to avoid:

  • Expensive
  • No API, must only use their system.
  • No Customization
jonsca
  • 4,084

3 Answers3

4

I knew of a professional service that required the end user to define their carrier, and then they converted it to the built-in email address (EX: Verizon is <10-digit phone number>@vtext.com)

I found a (non-confirmed) list of many of the carriers here:

ATT - [10-digit phone number] @ txt.att.net

Sprint - [10-digit phone number] @ messaging.sprintpcs.com

T-Mobile - [10-digit phone number] @ tmomail.net

US Cellular - [10-digit phone number] @ email.uscc.net

Verizon - [10-digit phone number] @ vtext.com

How do you send a text message from the computer?

Wikipedia

GavinR
  • 385
3

Zeep Mobile is a free service, and I think it's pretty good. I'm planning on using it for a project in the near future.

jtbandes
  • 8,960
0

You can script PHP to do this by sending email to phone#@carrieraddress.com. Here is a list of the email format for different carriers:

http://en.wikipedia.org/wiki/SMS_gateway

You can write a script and then use a cron job or service scheduler to automate the messages.

barfoon
  • 1,006