symfony-bundle vanio-mailing-bundle
Easy peasy e-mail sending from Symfony applications.
vanio/vanio-mailing-bundle
Easy peasy e-mail sending from Symfony applications.
- Tuesday, April 24, 2018
- by nixbody
- Repository
- 3 Watchers
- 0 Stars
- 1,382 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 20 % Grown
Mailing Bundle
, (*1)
Installation
Installation can be done as usually using composer.
composer require vanio/vanio-mailing-bundle
, (*2)
Next step is to register this bundle as well as bundles it depends on inside your AppKernel
., (*3)
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
// ...
public function registerBundles(): array
{
$bundles = [
// ...
new Symfony\Bundle\TwigBundle\TwigBundle,
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle,
new Vanio\UserBundle\VanioMailingBundle,
];
// ...
}
}