PHPackages                             vs-point/symfony-mailjet-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. vs-point/symfony-mailjet-mailer

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

vs-point/symfony-mailjet-mailer
===============================

Symfony Mailjet Mailer Bridge

v1.0.4(5y ago)040MITPHPPHP &gt;=7.1.3

Since Jul 23Pushed 5y ago2 watchersCompare

[ Source](https://github.com/vs-point/symfony-mailjet-mailer)[ Packagist](https://packagist.org/packages/vs-point/symfony-mailjet-mailer)[ Docs](https://www.vs-point.cz)[ RSS](/packages/vs-point-symfony-mailjet-mailer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (3)Versions (6)Used By (0)

Mailjet Mailer
==============

[](#mailjet-mailer)

Provides Mailjet integration for Symfony Mailer.

Usage
-----

[](#usage)

1. Installation via composer

```
composer require vs-point/symfony-mailjet-mailer
```

2. Register in services.yaml

```
VSPoint\Mailjet\Transport\MailjetTransportFactory:
   tags:
      - mailer.transport_factory
```

3. Provide configuration in .env file

```
{JETMAILER_NAME}=mailjet://{public key}:{private key}@api.mailjet.com

```

### Send base email

[](#send-base-email)

```
$dsn = 'mailjet://{public key}:{private key}@api.mailjet.com';

$transport = Transport::fromDsn($dsn);
$mailer = new Mailer($transport);
$email = (new Email())
            ->from('hello@example.com')
            ->to('you@example.com')
            //->cc('cc@example.com')
            //->bcc('bcc@example.com')
            //->replyTo('fabien@example.com')
            //->priority(Email::PRIORITY_HIGH)
            ->subject('Time for Symfony Mailer!')
            ->text('Sending emails is fun again!')
            ->html('See Twig integration for better HTML integration!');
$mailer->send($email);
```

### Send templated email

[](#send-templated-email)

```
$dsn = 'mailjet://{public key}:{private key}@api.mailjet.com';

$transport = Transport::fromDsn($dsn);
$mailer = new Mailer($transport);
$email = (new MailjetTemplateEmail(123456789,['variable'=>'value']))
            ->from('my@mail.com');
$mailer->send($email);
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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 ~32 days

Total

5

Last Release

1989d ago

### Community

Maintainers

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

---

Top Contributors

[![Tompok](https://avatars.githubusercontent.com/u/2486047?v=4)](https://github.com/Tompok "Tompok (8 commits)")[![vitek499](https://avatars.githubusercontent.com/u/1543645?v=4)](https://github.com/vitek499 "vitek499 (4 commits)")

---

Tags

emailmailermailjetphpsymfonysymfony-componentphpsymfonyemailmailerMailjetsymfony-component

### Embed Badge

![Health badge](/badges/vs-point-symfony-mailjet-mailer/health.svg)

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

###  Alternatives

[mailjet/mailjet-apiv3-php

PHP wrapper for the Mailjet API

27411.4M77](/packages/mailjet-mailjet-apiv3-php)[sylius/mailer-bundle

Mailers and e-mail template management for Symfony projects.

728.1M77](/packages/sylius-mailer-bundle)[hafael/azure-mailer-driver

Supercharge your Laravel or Symfony app with Microsoft Azure Communication Services (ACS)! Effortlessly add email, chat, voice, video, and telephony-over-IP for next-level communication. 🚀

14109.2k](/packages/hafael-azure-mailer-driver)[railsware/mailtrap-php

The Mailtrap SDK provides methods for all API functions.

56770.5k](/packages/railsware-mailtrap-php)[dotkernel/dot-mail

Dotkernel mail component based on symfony mailer

1140.0k5](/packages/dotkernel-dot-mail)

PHPackages © 2026

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