dev-master
9999999-devA simple wrapper for the free SMS API provider TextBelt.
The Requires
The Development Requires
by Dylan Pierce
1.1
1.1.0.0A simple wrapper for the free SMS API provider TextBelt.
The Development Requires
by Dylan Pierce
Wallogit.com
2017 © Pedro Peláez
A simple wrapper for the free SMS API provider TextBelt.
A simple PHP Wrapper for Textbelt, a free SMS Provider, (*1)
Courier is a composer package. Install using:, (*2)
composer require ctrlaltdylan/courier
Example:, (*3)
$courier = new Courier\Courier;
$courier->setRecipient('867530999')->setBody('Hello World')->send();
You can also chain for multiple messages in one line., (*4)
$body = "One hot body";
$courier->setRecipient('1112223333')->setBody($body)->send()
new()->setRecipient('4445556666')->setBody($body)->send()
;
Note: Be sure to use the new() function before starting another message., (*5)
Options are passed into courier via the 2nd argument in the constructor., (*6)
Courier provides the Canadian and International support given by Textbelt in a few ways., (*7)
Like through the constructor:, (*8)
$canadianCourier = new Courier\Courier(['body' => 'I <3 Vancouver'], ['region' => 'canada']);
Or with the setRegion method:, (*9)
$courier->setRegion('intl');
Supported regions:, (*10)
us (default)canadaintl (short for 'international')A simple wrapper for the free SMS API provider TextBelt.
A simple wrapper for the free SMS API provider TextBelt.