<?php
namespace App\Bundle\MailCenterBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
class MailCenterBundle extends AbstractPimcoreBundle
{
public function getNiceName(): string
{
return 'Mail Center Bundle';
}
public function getDescription(): string
{
return 'Centralized email sending with queue, ZeptoMail API, templates, logging, admin APIs and user notifications.';
}
public function getContainerExtension(): ?ExtensionInterface
{
return new DependencyInjection\MailCenterBundleExtension();
}
}