Project

phonify

0.0
No commit activity in last 3 years
No release in over 3 years
Phonify gem adds the power of Phonify service directly in your app. More info on http://www.phonify.io/help.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0
 Project Readme

Introduction

Phonify gem is an easy way to send SMS and verify phone numbers with global coverage from your app.

More info on phonify.io/help.

Installation

Add gem to your Gemfile

gem 'phonify', github: 'pelcasandra/phonify-gem'

Install the gem

bundle install

Usage

Configure your api and business tokens:

# config/initializers/phonify.rb
Phonify.configure do |config|
  config.api_key = 'TOKEN'
  config.business = 'BUSINESS TOKEN'
end

Send message

Phonify.send_message '+14560000000', 'As above, so below.'

Find messages

Single message

Phonify.message '4g_oYIXRP6hRrUO0t9C'

All messages

Phonify.messages

Returns array of messages

Errors

See Phonify API Errors.