0.01
No commit activity in last 3 years
No release in over 3 years
Ruby API for send sms with Zenvia
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 1.8.7
~> 3.12
~> 2.8.0
 Project Readme

Zenvia Ruby

Download and Install

gem install zenvia-ruby

or on your Gemfile:

gem "zenvia-ruby"

and

bundle install

create zenvia config initializer

rails g zenvia:install

after config file created, you should define config params:

require 'zenvia'

Zenvia.configure do |config|
  config.account  = 'your-zenvia-account'
  config.code     = 'your-zenvia-code'
  config.dispatch = 'zenvia dispatch method. default is (send)'
  config.from     = 'name of message sender. Eg. MY BUSINESS'
end

Usage

require 'zenvia'

# Sending a SMS

sms = Zenvia::Sms.new('you-id', 'test message!', 5521999999999)
sms.forward => #<Net::HTTPOK 200 OK readbody=true>

Contributing to zenvia-ruby

  1. Fork the project.
  2. Start a feature/bugfix branch.
  3. Commit and push until you are happy with your contribution.
  4. Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.

Copyright (c) 2012 LEONEL MORAIS. See LICENSE.txt for further details.