vote up 4 vote down star
1

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?

flag
Duplicate of stackoverflow.com/questions/238579/… – Reed Copsey Jun 11 at 20:58

4 Answers

vote up 2 vote down check

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

link|flag
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 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 at 22:03
vote up 2 vote down

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|flag
That's a great idea. – Carlos Jun 11 at 21:02
you don't have to do that yourself, the sms-fu plugin has already done it. – Chris Drappier Jun 11 at 21:13
vote up 0 vote down

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

link|flag
vote up -1 vote down

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|flag
Thanks but I don't have 4 cents per message. – Carlos Jun 11 at 21:35

Your Answer

Get an OpenID
or

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