1. Go to this page and download the library: Download knyk/mailbox-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/ */
knyk / mailbox-bundle example snippets
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
...
new Knyk\MailboxBundle\MailboxBundle(),
];
...
}
}
namespace App\Controller;
use Knyk\MailboxBundle\Factory\MailboxFactory;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class IndexController extends AbstractController
{
public function indexAction(MailboxFactory $mailboxFactory)
{
$exampleConnection = $mailboxFactory->create('example_connection');
$anotherConnection = $mailboxFactory->create('another_connection');
...
}
...
}
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class IndexController extends Controller
{
public function indexAction()
{
$exampleConnection = $this->get('Knyk\MailboxBundle\Factory\MailboxFactory')->create('example_connection');
$anotherConnection = $this->get('Knyk\MailboxBundle\Factory\MailboxFactory')->create('another_connection');
...
}
...
}