efidatansantana / nrsgateway
NRS Gateway services integration.
dev-master
2026-07-13 08:52 UTC
Requires
None
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
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();