PHPackages                             flowmailer/symfony-flowmailer-mailer - 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. flowmailer/symfony-flowmailer-mailer

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

flowmailer/symfony-flowmailer-mailer
====================================

Provides Flowmailer integration for Symfony Mailer

1.0.2(1y ago)071MITPHPPHP ^8.1

Since Jun 9Pushed 1y agoCompare

[ Source](https://github.com/flowmailer/symfony-flowmailer-mailer)[ Packagist](https://packagist.org/packages/flowmailer/symfony-flowmailer-mailer)[ RSS](/packages/flowmailer-symfony-flowmailer-mailer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (12)Versions (4)Used By (0)

Flowmailer Symfony Mailer Bridge
================================

[](#flowmailer-symfony-mailer-bridge)

Provides Flowmailer integration for Symfony Mailer.

Installation
------------

[](#installation)

```
composer require flowmailer/symfony-flowmailer-mailer
```

Configuration
-------------

[](#configuration)

Obtain credentials from [Flowmailer credentials wizard](https://dashboard.flowmailer.net/setup/sources/credentialswizard.html)

Add the obtained credentials to the MAILER\_DSN in the env file:

```
MAILER_DSN=flowmailer://CLIENT_ID:CLIENT_SECRET@api.flowmailer.net?account_id=1234
```

When using in a symfony project, you'll need to tag the transport factory as a 'mailer.transport\_factory'.

```
# config/services.yaml
services:
   # Other services

    Flowmailer\Symfony\Mailer\Transport\FlowmailerTransportFactory:
        parent: 'mailer.transport_factory.abstract'
        tags:
            - name: 'mailer.transport_factory'
```

Stand alone:

```
use Symfony\Component\Mailer\Mailer;
use Symfony\Component\Mailer\Transport;
use Flowmailer\Symfony\Mailer\Transport\FlowmailerTransportFactory;

$factory   = new FlowmailerTransportFactory();
$transport = new Transport([$factory]);
$mailer    = new Mailer($transport->fromString($dsnString));

$email = (new Email())
    ->from('example@example.com')
    ->to('example@example.com')
    ->subject('Test e-mail')
    ->text('This is the content of the email')
    ->html('Test e-mail with inline image')
    ->attachFromPath('path/to/attachment.pdf')
    ->embedFromPath('path/to/inline-image.png', 'inline-image')
;

$mailer->send($email);
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance41

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

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 ~472 days

Total

3

Last Release

488d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3c6d5c63617d9dde88a023fc7cd17b14075a87a61320481d3ab2ea0d02dde65b?d=identicon)[sendpro](/maintainers/sendpro)

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/flowmailer-symfony-flowmailer-mailer/health.svg)

```
[![Health](https://phpackages.com/badges/flowmailer-symfony-flowmailer-mailer/health.svg)](https://phpackages.com/packages/flowmailer-symfony-flowmailer-mailer)
```

###  Alternatives

[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sulu/sulu

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

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[mailersend/laravel-driver

MailerSend Laravel Driver

87732.8k4](/packages/mailersend-laravel-driver)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)

PHPackages © 2026

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