Project

ruby_sms

0.0
No release in over 3 years
Low commit activity in last 3 years
simple way to send sms using sms77 or any other short message api provider
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

ruby_sms

simple way to send sms using sms77 or any other short message api provider
A Ruby client library for [Sms77][more to come].

You will need a valid account with an api key to access the api endpoints

Getting started

To install ruby_sms, run the following command:

  gem install ruby_sms

Or if you are using bundler, add

  gem 'ruby_sms', '~>1.0'

to your Gemfile, and run bundle install

require "ruby_sms"
sms = RubySms.new(api_key: "1234123", user: "user@email.com")
response = sms.send(text: "your message", to: "+49178223", delay: false)
if response.success? 
  puts "Sms deliverd " 
else
  puts response.errors
end