PHP code example of tzb / sendy-bundle

1. Go to this page and download the library: Download tzb/sendy-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/ */

    

tzb / sendy-bundle example snippets



// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...

            new Sendy\SendyBundle\SendyBundle(),
        ];

        // ...
    }

    // ...
}

// get service
$sendy = $this->container->get('sendy.sendy_manager');
$count = $sendy->getSubscriberCount();

$sendy = $this->container->get('sendy.sendy_manager');
$count = $sendy->getSubscriberCount('other_list_id');

$sendy = $this->container->get('sendy.sendy_manager');
$status = $sendy->getSubscriberStatus('[email protected]');

$sendy = $this->container->get('sendy.sendy_manager');
$status = $sendy->subscribe('Name', '[email protected]');

$sendy = $this->container->get('sendy.sendy_manager');
$status = $sendy->unsubscribe('[email protected]');