PHP code example of scaytrase / symfony-sms-delivery-bundle
1. Go to this page and download the library: Download scaytrase/symfony-sms-delivery-bundle 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/ */
scaytrase / symfony-sms-delivery-bundle example snippets
$bundles = array(
//....
new ScayTrase\SmsDeliveryBundle\SmsDeliveryBundle(),
//....
);
class MyMessage implements ShortMessageInterface { /*...*/ }
class SmsController extends Controller {
public function sendSmsAction()
{
$message = new MyMessage('5552368','Help!')
$sender = $this->get('sms_delivery.sender');
$sender->spoolMessage($message);
$result = $sender->flush();
return new Response('Delivery '. $result ? 'successful' : 'failed');
}
}
class MyProviderSmsTransport implements TransportInterface { /*...*/ }
class MyMessage implements ShortMessageInterface { /*...*/ }
$transport = new MyProviderSmsTransport();
$sender = new MessageDeliveryService($transport);
$sender->spoolMessage(new MyMessage('Message body'));
$sender->flush(); // Default InstantSpool does not actually needs flushing but you can use another spool instead
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.