Reputation: 737
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
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