hello members how r u
another query for u people,

can any body help me in sending sms through code.any kind of help will be highly appreciated...

md.sameeryou commented: s +0

Recommended Answers

All 12 Replies

If you are planning to develop a webapp that sends sms then you willl have to get connectivity from a bulk sms providor. They will provide you simple URLs you can use to send SMS. No big deal....

The sms gateway will provide you API in various platforms... You just need to make a post/get of your message, to_number etc to their api...

Check out clickatell.com

Do you need to receive SMS? If you need to receive SMS, you will need to host your own GSM device or modem so that people can send you SMS.

If not, you can just use internet SMS gateways like clickatell to do the work, and post to them by HTTP, XML or email. The cost is about 6-8 cents per SMS. There are cheaper services, but not always reliable. If you need to host your own GSM device, you can use software like http://www.visualtron.com or http://www.kannel.org (GPL Open Source). Alternatively, you may obtain a shortcode from your Telco - but these come with monthly subscription of maybe one or two hundreds. :)

Regards,
<sniped>

Hi amithasija,

You should check out this post over at me2mobile. We're starting a cookbook type series on how to create free sms sending websites.
http://www.me2mobile.com/blg_view.php?blog_id=25

Hope this helps

Ivo
<sniped>
Roll your own mobile services

Thanks for all of your sites, big help!

there is a plugin to do this. google for sms rails plugin you will find it.

To send sms using rails you will need to interface with a sms provider such as mx telecom for example.

The just connect to their REST interface and send the sms's

Hi,

I'm currently working on this. I see that Ruby has support for ASMX web services SNIP, and therefore shouldn't have a problem, once I get to grips with Soap4r.

See in 30 mins, I should have something posted on the blog, SNIP

Watch this space! ...

Dan.

Et Violá !

Source code for sending SMS from ruby:

SNIP

Et Violá !

Source code for sending SMS from ruby:

SNIP

OK, for some reason, a moderator is removing the download link for the source code for sending SMS from ruby, so I can post the basics of it here, you can find the complete source code with a search "sms ruby freebiesms" in Google.

server = 'http://example.com/sendsms.asmx'

service = SOAP::RPC::Driver.new(server, RechnerServiceModule::InterfaceNS)

service.default_encodingstyle = SOAP::EncodingStyle::ASPDotNetHandler::Namespace
RechnerServiceModule::add_method(service)

result = service.SendSms("Bob","004478660xxxx","00447866xxxxx","Hello From Ruby","en-GB")

(Replace xxxx with the mobile number)

That's the absolute basics, for the full code, just search for "sms ruby freebiesms" in Google.

I used clickatell API through SMTP then all you need to do is use mailer to send then the text message as the body of the email to the specefic address as per guide lines on their website

http://am.rubyonrails.org/ for help on using mailler action

I'd like to thank the monitors for snipping out that sms link since it is more of an ad than free source. Your company charges for the use of "free sms".... how can you call it free if you charge for it?? anyways thanks mods!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.