Skip to content
Advertisement

MessageBird sms not sending (php)

I have been trying to send SMS messages with PHP using MessageBird. Currently I’m getting no error messages but I’m not receiving the messages on my phone, but I can see my free SMS credits being deducted.

<?php

    require('header.php');
    require 'php-rest-api-master/autoload.php';   

    $client = new MessageBirdClient('YOUR_ACCESS_KEY'); // Access key goes here

    $message = new MessageBirdObjectsMessage();
    $message->originator = 'Test';
    $message->recipients = ['YOUR_PHONE_NUMBER'];
    $message->body = 'Hello, your meeting request has been processed';

    try{
        $response = $client->messages->create($message);
    } catch (Exception $e){
        echo $e->getMessage();
    }

    require('footer.php');

?>

I was wondering if there was anything I was missing?

Advertisement

Answer

One option for debugging would be to check the SMS logs in the Dashboard.

https://developers.messagebird.com/quickstarts/sms/troubleshooting/

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement