arun kumar
arun kumar

Reputation: 737

Vonage/Nexmo - PHP SDK - How to send MMS?

I would like to send MMS using PHP SDK. There is no proper documentation on how to send it.

Any help in this regard highly appreciated.

Upvotes: 0

Views: 193

Answers (1)

Florian Laßhofer
Florian Laßhofer

Reputation: 41

See on Voange Developer: Click here

This is a simple example how to use the api:

<?php

use Nexmo\Client;

$client = new Client(new Nexmo\Client\Credentials\Basic('API_KEY', 'API_SECRET'));

$sended_message = $client->message()->send([
    'to' => 'PHONE_NUMBER_TO',
    'from' => 'PHONE_NUMBER_FROM',
    'type' => 'mms',
    'media' => ['https://www.xxx.xxx/test.jpg'],
    'message' => 'example mms'
]);

print_r($sended_message);

Upvotes: 0

Related Questions