PHP code example of open-ecommerce / yii2-telerivet
1. Go to this page and download the library: Download open-ecommerce/yii2-telerivet library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$TelerivetService = Yii::$app->Yii2Telerivet->initTelerivet();
try {
$message = $TelerivetService->account->messages->create(
"+12345678901", // To a number that you want to send sms
array(
"from" => "+12345678901", // From a number that you are sending
"body" => "Hello from my Yii2 Application!",
));
} catch (\Telerivet\Exceptions\RestException $e) {
echo $e->getMessage();
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.