codechap/sms-portal

Send SMSs via SMSportal.com

Maintainers

Package info

github.com/codeChap/smsPortal

pkg:composer/codechap/sms-portal

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2026-02-20 08:21 UTC

This package is auto-updated.

Last update: 2026-02-20 08:26:01 UTC


README

Quick and dirty way to send an SMS

Installation

Install via Composer:

composer require codechap/sms-portal:"dev-master"

You might want to install the giggsey/libphonenumber-for-php package for phone number formatting and validation:

composer require giggsey/libphonenumber-for-php:"^8.13"

Usage

use Codechap\SmsPortal\Sms;

$sms = new Sms();
$sms->set('clientId', 'your_client_id');
$sms->set('clientSecret', 'your_client_secret');
$sms->send('1234567890', 'Hello, World!');