Project

rtedexis

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby integration for Tedexis SMS delivery
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
~> 10.0

Runtime

 Project Readme

Rtedexis

This is a solution for integrate a Ruby application with Tedexis SMS delivery Tool any information for get Tedexis services is in it's website Tedexis

At the moment only is compatible with two integrations tools for SMS delivery:

*SOAP *SFTP

Getting started

For install this gem you could do running this on your terminal

gem install rtedexis

then add this to your Gemfile

gem 'rtedexis'

and require it

require  'rtedexis'

SOAP

For individual delivery of SMS you could use SOAP tool on this way

Rtedexis.SOAP.new(passport: 'yourpassport', password: 'yourpassword').send('4125491920', 'Text Here!')

You don't require to write the cellphone number with '+58' format

#SFTP

For massive sms delivery with SFTP tool you could use this:

Rtedexis.SFTP.new(username: 'username', password: 'yourpassword').send(['4125491920', '4168605522'], 'Text here')

this method recieve an array for the numbers that will delivery the SMS