Simcy Creative
  • What is Simcify
  • Requirements
  • Getting Started
  • Javascript Functions
    • Simple js Functions
    • Interaction Functions
      • Loader
      • Notifications
      • Credit Card Form
    • Helper Functions
      • Random
      • Cookies
      • Send to server(Ajax)
      • Server Responses
    • HTML helpers
      • Form Processing
      • Send onClick
      • Send onChange
      • Fetch & Display
      • Dropify
      • Switchery
      • Crop Image Input
      • Image Preview
  • PHP Functions
    • Introduction
    • Setup
    • Authentication
      • Login
      • Register
      • Forgot Password
      • Reset Password
    • Configuration
    • Email & SMS
      • SMS
        • Africa's Talking
        • Twilio
      • Email
    • Files Manager
      • Upload
      • Delete
Powered by GitBook
On this page
  • Parameters
  • Usage
  • Response
  1. PHP Functions
  2. Email & SMS
  3. SMS

Africa's Talking

Africa's Talking provides SMS services via their API

PreviousSMSNextTwilio

Last updated 6 years ago

You will need an account to send SMS with their API. API credential are sent on .env file.

Let's get started with sending SMS

Parameters

All parameters are required

Parameter

Type

Description

$phoneNumber

string

The phone number of the recipient with country code

$message

string

The SMS message body

Usage

use Simcify\Sms;

Sms::africastalking("+254720783834","Hey John, how are you doing?");

Response

Response will be a boolean. True or False

Africa's Talking