Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending Automated SMS Messages

First, we use .net & sql server.

I have a client that is interested in a system that will send SMS messages at scheduled times.

I have never done anything like this except for sending an sms through an email gateway, like [email protected]. But, I don't think that is an option for this as, our database will store the phone number and ignore the provider.

Thanks for any input on tackling this problem.

like image 501
Ronnie Overby Avatar asked Jun 10 '09 16:06

Ronnie Overby


3 Answers

Easiest way is to use an SMS gateway who provide an API. Check out txtlocal

If you use a provider such as txtlocal you have 2 options - you can either build the scheduling into your system, or you could have a batch process which sends the sms info and the time that you want it to be sent using their API.

like image 108
Macros Avatar answered Nov 13 '22 11:11

Macros


I've used Clickatell in the past.

They have a RESTfull API, which means sending as SMS is as easy as constructing a URL with the message and recipient's phone number.

It's not free, obviously, but it's pretty darn cheap.

like image 26
Assaf Lavie Avatar answered Nov 13 '22 11:11

Assaf Lavie


Well, you either have to use an SMS gateway as you mention, or get a PCI/USB GSM modem like this one which allows you to send texts straight from the server.

like image 1
Tom van Enckevort Avatar answered Nov 13 '22 13:11

Tom van Enckevort