Search by

efidatansantana / nrsgateway

efidatansantana

NRS Gateway services integration.

Package info

github.com/efidatansantana/nrsgateway

pkg:composer/efidatansantana/nrsgateway

Statistics

Installs: 23

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2026-07-13 08:52 UTC

This package is auto-updated.

Last update: 2026-09-13 09:05:53 UTC


README

360NRS Gateway services integration. This library allows you to use the SMS Push service from 360NRS Gateway.

Quick Start

Just put in your username and password for the NRSGateway control panel, specify the recipients in array format and send it.

use efidatansantana\nrsgateway\SMSService;

$nrs = new SMSService('username', 'password');
$nrs->to   = ['xxxxxxxxxxxxx', 'yyyyyyyyyyyyy'];
$nrs->from = 'Sender';
$nrs->msg  = 'This is a test message.';
$nrs->send();