ekreative/smpp-client

SMPP Client

2.0.1 2019-11-29 15:07 UTC

This package is auto-updated.

Last update: 2024-02-29 03:24:17 UTC


README

PHP 5 based SMPP client bundle for Symfony2. Forked from https://github.com/onlinecity/php-smpp

For now, it only sends messages.. trasmitter mode

Installation

Add to composer.json

"require": {
    "kronas/smpp-client-bundle": "1.0.0-dev"
}

Add to AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Kronas\SmppClientBundle\KronasSmppClientBundle(),
    );

    return $bundles;
}

Add to config.yml

kronas_smpp_client:
    host: %smpp_host%
    port: %smpp_port%
    login: %smpp_login%
    password: %smpp_password%
    signature: %smpp_signature%

More configuration parameters

Usage

$smpp = $this->get('kronas_smpp_client.transmitter');

$smpp->send($phone_number, $message);

*Phone number must be in international format without "+"

**Function "send" return a message ID

License

This bundle is under the MIT license. See the complete license in the bundle:

Resources/meta/LICENSE