34

Are there any sites that offer the ability to send SMS for free?

How do they do it?

How am I able to send SMS programmatically?

Cœur
  • 37,241
  • 25
  • 195
  • 267
user121196
  • 30,032
  • 57
  • 148
  • 198
  • 11
    Shouldn't this be re-opened? I feel like it's on topic if we are talking about sending SMS messages programmatically. – RattleyCooper Mar 28 '16 at 16:32

4 Answers4

15

The articles listed below may be useful:
Are there any free services for sending SMS programmatically?
[Programmatic SMS] [3]
[Free SMS API?] [4]

EDIT Removed first link that has been removed

Swapnil
  • 247
  • 1
  • 7
eric.christensen
  • 3,191
  • 4
  • 29
  • 35
12

Send an email to the 10 digit phone number @ Carrier's domain name.

Here is a list of the carriers and their domains:

https://en.wikipedia.org/wiki/List_of_SMS_gateways

Cœur
  • 37,241
  • 25
  • 195
  • 267
AndyMcKenna
  • 2,607
  • 3
  • 26
  • 35
  • 1
    is this a reliable way to send sms? – user121196 Jun 30 '09 at 16:01
  • 3
    I doubt it. I certainly wouldn't do that for a production system. – skaffman Jul 27 '09 at 12:54
  • 2
    The table is out of date (see the note). The link should be: http://en.wikipedia.org/wiki/List_of_carriers_providing_Email_or_Web_to_SMS – Peter Olsson Jul 27 '09 at 13:03
  • If you need a site to look up carrier names, check out http://www.freecarrierlookup.com/. There are others if you google as well, that was just the first hit when googling "Find cell carrier by number" – RattleyCooper Mar 28 '16 at 16:35
  • @DuckPuncher, it should be noted that those websites are not always up-to-date and, in fact, they are usually obsolete for up to several years after changes such as porting a phone number to a new service provider. – Spencer D Jan 14 '17 at 15:25
2

I use an SMS gateway and it is fairly easy but I did consider this as an alternative because it potentially gave me more control email to sms

  • I'm using gatewayapi.com, they are good and competitive in terms of their pricing. Their API is very easy to deal with for nodejs. – CMP Apr 25 '19 at 13:46
1

The sites that send SMS for free usually use the email interface that most of the carriers implement which allow you to send an email to (for instance) <your 10 digit number>@mobile.att.net

and have it received as an SMS by that phone.

Hardwareguy
  • 2,941
  • 1
  • 17
  • 13