PHPackages                             creonit/mailing-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. creonit/mailing-bundle

ActiveSymfony-bundle[Mail &amp; Notifications](/categories/mail)

creonit/mailing-bundle
======================

v1.0.2(5y ago)07.2k1[1 PRs](https://github.com/creonit-dev/MailingBundle/pulls)1GPL-3.0-onlyPHPPHP &gt;=7.2.5CI failing

Since Sep 7Pushed 5y ago2 watchersCompare

[ Source](https://github.com/creonit-dev/MailingBundle)[ Packagist](https://packagist.org/packages/creonit/mailing-bundle)[ RSS](/packages/creonit-mailing-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (9)Versions (8)Used By (1)

MailingBundle
=============

[](#mailingbundle)

```
# config/packages/creonit_mailing.yaml

creonit_mailing:
    from: 'noreply@creonit.ru'
    base_template: 'mail/base.html.twig'
    templates_path: '%kernel.project_dir%/config/mailing_templates'
    globals:
        parameter: 'value'
```

```
# config/mailing_templates/template.yaml

example:
    title: 'Example Template'
    from:
        email: 'noreply@creonit.ru'
        name: 'Creonit'
    subject: 'Welcome'
    template: '{{ message }}'
```

`custom template loader`

```
use Creonit\MailingBundle\Templating\Loader\AbstractTemplateLoader;
use Creonit\MailingBundle\Templating\MailingTemplate;
use Creonit\MailingBundle\Templating\TemplateCollection;

class MyTemplateLoader extends AbstractTemplateLoader
{
    public function load(TemplateCollection $templateCollection)
    {
        $template = new MailingTemplate('my_template');
        $template
            ->setTitle('Example custom loader')
            ->setSubject('Example custom loader')
            ->setTemplate('Custom loader');

        $templateCollection->add($template);
    }
}
```

`custom message builder`

```
use Creonit\MailingBundle\Message\MailingMessage;
use Creonit\MailingBundle\Message\MessageBuilderInterface;
use Creonit\MailingBundle\Templating\MailingTemplate;

class MyMessageBuilder implements MessageBuilderInterface
{
    public function build(MailingTemplate $template, array $context): MailingMessage
    {
        $message = new MailingMessage();
        $message->cc('major@gmail.com');

        return $message;
    }

    public function supports(MailingTemplate $template, array $context): bool
    {
        return $template->getKey() === 'my_template';
    }
}
```

`send message`

```
use Creonit\MailingBundle\Mailing;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Mailer\MailerInterface;

class MailingController extends AbstractController
{
    public function sendEmail(Mailing $mailing, MailerInterface $mailer)
    {
        $email = 'example@exmple.com';
        $template = 'my_template';

        $message = $mailing->buildMessage($template, ['message' => 'Hello']);
        $message->to($email);

        $mailer->send($message);
    }
}
```

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 92.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~283 days

Recently: every ~317 days

Total

6

Last Release

2172d ago

Major Versions

v0.1.3 → 1.0.02020-07-22

### Community

Maintainers

![](https://www.gravatar.com/avatar/fe3645a19e6345e3d3ac55f795ef31a8ab298648d8865b02d2acd8364f66a131?d=identicon)[creonit](/maintainers/creonit)

---

Top Contributors

[![bondarovich](https://avatars.githubusercontent.com/u/2369478?v=4)](https://github.com/bondarovich "bondarovich (12 commits)")[![creonit-dev](https://avatars.githubusercontent.com/u/19219936?v=4)](https://github.com/creonit-dev "creonit-dev (1 commits)")

---

Tags

symfonycreonit

### Embed Badge

![Health badge](/badges/creonit-mailing-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/creonit-mailing-bundle/health.svg)](https://phpackages.com/packages/creonit-mailing-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M737](/packages/sylius-sylius)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M203](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.6M574](/packages/shopware-core)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M507](/packages/pimcore-pimcore)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
