Taiwan SMS Provider Every8d API
Add this line to your application's Gemfile:
gem 'every8d'
And then execute:
$ bundle
Or install it yourself as:
$ gem install every8d
every8d = Every8d::Client.new(UID: YOUR_ACCOUNT, PWD: YOUR_PASSWORD)
# Get Credit
every8d.get_balance
# Send Message
every8d.send_sms(MSG: YOUR_MESSAGE, DEST: DEST_MOBILE)
# Get Message Status
every8d.get_message(BID: MESSAGE_BID)
- Fork it ( https://github.com/[my-github-username]/every8d/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