forked from abreeden/transmitsms-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## TransmitSMS-API for Laravel | ||
|
||
Provides an implementation for the TransmitSMS-API as used by BurstSMS (burstsms.com.au) | ||
|
||
Original class was developed by BurstSMS and this is just a package of their class and is not an official module it is something I packaged up to make it easier for using their system. | ||
|
||
## Documentation | ||
|
||
To send a message you will require an account with a provider using the TransmitSMS API such as BurstSMS. Use the following syntax to initialise and send a message in Laravel 4. | ||
|
||
$sms = new \Abreeden\TransmitsmsApi\TransmitsmsApi("API_KEY",'API_Secret'); | ||
$result=$sms->sendSms("Message goes here","Destination Number","From"); | ||
|