chancelito/vetrosms-php-sdk

There is no license information available for the latest version (1.1) of this package.

This package is to help send smses via vetro media sms platform

Maintainers

Package info

github.com/chancelito/vetro-sms-php-sdk

pkg:composer/chancelito/vetrosms-php-sdk

Statistics

Installs: 74

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.1 2020-07-28 15:39 UTC

This package is not auto-updated.

Last update: 2026-02-18 18:55:46 UTC


README

This package serves to send sms via Vetro media SMS SDK. Get an authorization token on this link by getting a account.

Requirements

PHP >= 7.2 Php-curl

Installation

$ composer require chancelito/vetrosms-php-sdk:"1.1"

Example

  <?php
  require_once __DIR__ . '/../../vendor/autoload.php';
  
  use Chancelito\VetrosmsPhpSdk\Message\VetroSms;
  
  $account_token = 'YOUR_ACCOUNT_TOKEN';
  $authorization_token = 'YOUR_AUTHORIZATION_TOKEN';
  $cell_number = 'YOUR_SA_CELL_NUMBER';
  $message = 'YOUR_MESSAGE';
  
  $obj = new VetroSms($authorization_token, $account_token);
  $send = $obj->sendSingleSms($cell_number, $message);

Contact

cshongo33@gmail.com