up vote 6 down vote favorite
2
share [g+] share [fb]

I have a Rails app that needs to send SMS messages to users but does not need to receive messages.

Is there a free way to do this programmatically? If so, how free is it - do they charge if you go over a certain number of messages?

I know Gmail allows you to send SMS messages now. But I'm not sure if this means you could also send an SMS from an application through an SMTP connection to Gmail. Has anyone done this?

link|improve this question
Duplicate of stackoverflow.com/questions/238579/free-sms-api – Reed Copsey Jun 11 '09 at 20:58
feedback

6 Answers

up vote 3 down vote accepted

well, if you use rails, you should try this out, seems to work pretty well

link|improve this answer
I have to have ActionMailer and an email account to send and receive messages, right? From the article I wasn't sure how I need to setup my own email configuration. Or are the emails all sent through some external application? – Carlos Jun 11 '09 at 21:48
yes, you will need action mailer, and optimally a mail server, but just an account to send from should do fine. – Chris Drappier Jun 11 '09 at 22:03
dead link ... assuming from the URL slug that this is what it linked to: intridea.com/2008/3/30/sms-fu-quickly-easily-send-text-messages – Dave W. Jul 26 '11 at 1:04
yes, thanks for the update Dave :) – Chris Drappier Jul 27 '11 at 14:57
feedback

If you just need to send messages, you're better off compiling as list of cellular proivders and email domains they use. Wikipedia has (what looks like) a pretty extensive list.

link|improve this answer
That's a great idea. – Carlos Jun 11 '09 at 21:02
you don't have to do that yourself, the sms-fu plugin has already done it. – Chris Drappier Jun 11 '09 at 21:13
feedback

You can use udefn to send SMS for free. They provide an API.

link|improve this answer
feedback

There is free sms api company. they are really awesome. they send only custom msg sent by you. no ads or spam. Daily sms limit 100. ou can add the api code to your website and send sms programically

http://www.freesmsapi.com/users/registration?ref=lufa.in

link|improve this answer
But it only works on indian phones? – Pacerier Jan 7 at 2:19
feedback

For about 4ยข per message (it seems) you can send through this gateway:

http://www.clickatell.com/pricing/message_cost.php

There is a ruby gem that will help you interface with Clickatell:

http://clickatell.rubyforge.org

Source of info:

http://codeclimber.blogspot.com/2008/03/sms-gateway-review.html

link|improve this answer
Thanks but I don't have 4 cents per message. – Carlos Jun 11 '09 at 21:35
feedback

Yoy can have look to this its a great one, Clickatell Ruby API 0.8.2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.