Feel free to send us feedback on file an issue. Feature requests are always welcome. If you wish to contribute, please take a quick look at the guidelines!
If there’s anything you’d like to chat about, please feel free to join our Gitter chat!
This project is brought to you by Alfred Nti | @mr_freddy59. |
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag “enhancement”. Don’t forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Get a your API Key at Arkesel
composer require roddy/arkesel
xxxxxxxxxxx
with your API key from Arkesel.
ARKESEL_API_KEY="xxxxxxxxxxx'
use Roddy\Arkesel\v1\Sms;
$sms = Sms::recipient("233501217124") // required
->from("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->send();
use Roddy\Arkesel\v1\Sms;
$sms = Sms::recipients(["233501217124", "233560001000"]) // required and should be array
->from("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->send();
use Roddy\Arkesel\v1\Sms;
$sms = Sms::recipient("233501217124") // required
->from("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->schedule();
use Roddy\Arkesel\v1\Sms;
$sms = Sms::recipients(["233501217124", "233560001000"]) // required and should be array
->from("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->schedule();
Note: $sms
will return array of object;
//$sms will return the following array of object
[
"code" => "ok",
"message" => "Successfully Sent",
"balance" => 1234, // your balance in your arkesel account
"main_balance" => 1.12, // your main balance in your arkesel account
"user" => "Roddy", // your arkesel account name
]
$sms->code; // this will return the code
$sms->message; // this will return the message
$sms->balance; // this will return the balance
$sms->main_balance; // this will return your main balance
$sms->user; // this will return the user
use Roddy\Arkesel\v1\Sms;
$balace = Sms::balance();
Note: $balace
will return array object;
//$balance will return the following array object
[
"balance" => 5000, // your balance in your arkesel account
"user" => "Roddy", // your arkesel account name
"country" => "country" // country of your arkesel account
]
$balance->balance; // this will return the balance
$balance->user; // this will return the user
$balance->country; // this will return the user
use Roddy\Arkesel\v1\Contact;
$contact = Contact::phoneBook("Roddy Phonebook") // required
->phoneNumber("233501217124")// required
->firstName("Roddy") // not required
->lastName("Fred") // not required
->email("email@email.com") // not required
->company("Roddy Ltd") // not required
->save();
Note: $contact
will return array object;
//$contact will return the following array object
[
"code" => "105",
"message" => "You already subscribed"
]
$contact->code; // this will return the code
$contact->message; // this will return the message
use Roddy\Arkesel\v2\Sms;
$sms = Sms::recipients(["233501217124"]) // required and should be array
->sender("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->sandBox(true) // remove if you don't use sandbox
->send();
use Roddy\Arkesel\v2\Sms;
$sms = Sms::recipients(["233501217124"]) // required and should be array
->sender("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->callbackUrl("https://callback_url.com") // required
->sandBox(true) // remove if you don't use sandbox
->send();
use Roddy\Arkesel\v2\Sms;
$sms = Sms::recipients([
"233501217124" => ["name" => "Roddy two", "what" => "Roddy Arkesel Laravel"],
"233544919953" => ["name" => "Adam", "what" => "Arkesel Laravel"],
])->sender("Roddy") // required
->message("Hello <%name%>, I'm using <%what%>") // required
->sandBox(true) // remove if you don't use sandbox
->callbackUrl("https://callback_url.com") // remove if you don't use callback url
->sendWithTemplate();
Click here to read more about sms template
OR
Click here to read more about sms template
use Roddy\Arkesel\v2\Sms;
$sms = Sms::recipients([
"233501217124" => ["name" => "Roddy two", "what" => "Roddy Arkesel Laravel"],
"233544919953" => ["name" => "Adam", "what" => "Arkesel Laravel"],
])->sender("Roddy") // required
->message("Hello <%name%>, I'm using <%what%>") // required
->sandBox(true) // remove if you don't use sandbox
->callbackUrl("https://callback_url.com") // remove if you don't use callback url
->schedule();
use Roddy\Arkesel\v2\Sms;
$sms = Sms::recipients(["233501217124"])
->sender("Roddy") // required
->message("Hello, I'm using Arkesel Laravel") // required
->sandBox(true) // remove if you don't use sandbox
->callbackUrl("https://callback_url.com") // remove if you don't use callback url
->schedule();
// $sms will return the following array
[
"status" => "success",
"data" => [
[
"recipient" => "233544919953",
"id" => "9b752841-7ee7-4d40-b4fe-768bfb1da4f0"
],
[
"recipient" => "233544919953",
"id" => "7ea01acd-485c-4df3-b646-e9e24430e145"
]
]
]
$sms->status; // will return "success"
$sms->data; // will return the following
[
"recipient" => "233544919953",
"id" => "9b752841-7ee7-4d40-b4fe-768bfb1da4f0"
],
[
"recipient" => "233544919953",
"id" => "7ea01acd-485c-4df3-b646-e9e24430e145"
]
use Roddy\Arkesel\v2\Sms;
$balance = Sms::balance();
// $balance will return the following array
[
"status" => "success",
"data" => [
"sms_balance" => "2003",
"main_balance" => "GHS 20.99"
]
]
$balance->status; // will return "success"
$balance->data->sms_balance; // will return "2003"
$balance->data->main_balance; // will return "GHS 20.99"
use Roddy\Arkesel\v2\Sms;
// id required
$smsDetails = Sms::id("f3be70c1-3545-4677-b607-6b5f32202652")->get();
// $smsDetails will return the following array
[
"status" => "success",
"data" => [
"ID" => "f3be70c1-3545-4677-b607-6b5f32202652",
"status" => "DELIVERED",
"sender" => "Arkesel",
"recipient" => "233544919953",
"message" => "Welcome to version 2 of our API!",
"message_count" => 1,
"sent_at_time" => "2021-04-09 18:44:05"
]
]
$smsDetails->status; // will return "success"
$smsDetails->data->ID; // will return "f3be70c1-3545-4677-b607-6b5f32202652"
$smsDetails->data->status; // will return "DELIVERED"
$smsDetails->data->sender; // will return "Arkesel"
$smsDetails->data->recipient; // will return "233544919953"
$smsDetails->data->message; // will return "Welcome to version 2 of our API!"
$smsDetails->data->message_count; // will return 1
$smsDetails->data->sent_at_time; // will return "2021-04-09 18:44:05"
Visit Arkesel Contact API for more understanding.
use Roddy\Arkesel\v2\Contact;
$contact = Contact::groupName("Roddy Group") //required
->create()
// $contact will return
[
"status" => "success",
"message" => "Contact group has been created successfully!"
]
$contact->status; // will return "success"
$contact->message; // will return "Contact group has been created successfully!"
Visit Arkesel Add Contact API for more understanding.
use Roddy\Arkesel\v2\Contact;
$addContact = Contact::contacts([
[
"phone_number" => "233544919953"
],
[
"phone_number" => "233544919953",
"first_name" => "Arkesel",
"last_name" => "Dev",
"company" => "Arkesel",
"email_address" => "support@arkesel.com",
"user_name" => "kadzam"
]
])->add()
// $addContact will return
[
"status" => "success",
"message" => "Contact group has been created successfully!"
]
$addContact->status; // will return "success"
$addContact->message; // will return "Contact group has been created successfully!"
Visit Arkesel Send Message to Contact API for more understanding.
use Roddy\Arkesel\v2\Contact;
$sendMessage = Contact::groupName("Roddy Group") //required
->sender("Roddy") // required
->message("Hello world. Spreading peace and joy only.") // required
->create()
// $contact will return
[
"status" => "success",
"message" => "SMS request sent successfully!"
]
$sendMessage->status; // will return "success"
$sendMessage->message; // will return "SMS request sent successfully!"
This hasn’t been tested yet, so if you get any issue report it here for immediate fix.
Visit Arkesel Voice API for more understanding.
use Roddy\Arkesel\v2\Voice;
$sendMessage = Voice::file("/C:/files/voice_message.mp3") // location of your voice file or you can use url and it's required
->recipients(["233501217124"]) // required and should be array
->send()
// $contact will return
[
"status" => "success",
"message": "SMS request sent successfully!"
]
$sendMessage->status; // will return "success"
$sendMessage->message; // will return "SMS request sent successfully!"