This gem provides an easy, clean interface to sending SMS messages from your rails application. SMS messages can be "delivered" immediately, or "delayed" if you are using Sidekiq.
Add this line to your application's Gemfile:
gem 'smoresms'
And then execute:
$ bundle
Or install it yourself as:
$ gem install smoresms
SmoreSMS simply formats an email "to" address which you can use in your mailer to send text messages from your Rails application. Don't get fooled by other poorly implemented solutions like SmsFu that try to deliver the email for you. Keep it simple!
- Fork it ( https://github.com/vanboom/smoresms/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request