PHPackages                             themosis/mailjet-driver - 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. themosis/mailjet-driver

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

themosis/mailjet-driver
=======================

A Themosis / Laravel / Illuminate MailJet service mail driver.

2.0.0(6y ago)337GPL-2.0-or-laterPHPCI failing

Since Jul 26Pushed 6y ago1 watchersCompare

[ Source](https://github.com/themosis/mailjet-driver)[ Packagist](https://packagist.org/packages/themosis/mailjet-driver)[ RSS](/packages/themosis-mailjet-driver/feed)WikiDiscussions master Synced 3d ago

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

MailJet Mail Driver
===================

[](#mailjet-mail-driver)

This package provides a [MailJet](https://www.mailjet.com/) mail driver for your [Themosis](https://framework.themosis.com/) / [Laravel](https://laravel.com/) / Illuminate based application.

It extends the default list of mail drivers provided by the `illuminate/mail` package by adding the `mailjet` option.

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

[](#installation)

The installation is done through [Composer](https://getcomposer.org/):

```
composer require themosis/mailjet-driver
```

Usage
-----

[](#usage)

### Set the default driver

[](#set-the-default-driver)

First, specify your default mail driver as `mailjet` from your application environment file and add the service public and secret keys:

```
MAIL_DRIVER=mailjet

MAILJET_PUBLIC_KEY=1234567890
MAILJET_SECRET_KEY=1234567890
```

### Add the MailJet service

[](#add-the-mailjet-service)

Open (or create) the `config/services.php` file and add the MailJet services credentials:

```
return [
    'mailjet' => [
        'public' => env('MAILJET_PUBLIC_KEY'),
        'secret' => env('MAILJET_SECRET_KEY'),
        'version' => env('MAILJET_VERSION', 'v3.1')
    ],
    ...
];
```

### Set the service provider

[](#set-the-service-provider)

By default, your application has the `Illuminate\Mail\MailServiceProvicer` defined inside the `config/app.php` file. In order to enable the `mailjet` driver, you need to replace the default service provider by the one provided by this package, the `Themosis\MailJet\MailServiceProvider` like so:

```
return [
    'providers' => [
        // Illuminate providers...

        Themosis\MailJet\MailServiceProvider::class,

        // Application providers
    ]
];
```

Changelog
---------

[](#changelog)

Please see the [CHANGELOG](CHANGELOG.md) file for more information on releases changes.

Security
--------

[](#security)

If you discover any security related issues, please send an email email to .

Credits
-------

[](#credits)

- [Julien Lambé](https://github.com/jlambe)
- [All contributors](https://github.com/themosis/mailjet-driver/graphs/contributors)

Support us
----------

[](#support-us)

[Themosis](https://www.themosis.com) is a webdesign agency based in Arlon, Belgium. We specialized in custom publishing web platforms and have expertise in building applications with WordPress.

We've built the [Themosis framework](https://framework.themosis.com), an open-source WordPress framework.

License
-------

[](#license)

GPL-2.0-or-later. Please see [LICENSE](LICENSE.md) file for more information.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~266 days

Total

2

Last Release

2218d ago

Major Versions

1.0.0 → 2.0.02020-04-17

### Community

Maintainers

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

---

Top Contributors

[![jlambe](https://avatars.githubusercontent.com/u/1917490?v=4)](https://github.com/jlambe "jlambe (6 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/themosis-mailjet-driver/health.svg)

```
[![Health](https://phpackages.com/badges/themosis-mailjet-driver/health.svg)](https://phpackages.com/packages/themosis-mailjet-driver)
```

###  Alternatives

[fedeisas/laravel-mail-css-inliner

Inline the CSS of your HTML emails using Laravel

5974.6M3](/packages/fedeisas-laravel-mail-css-inliner)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[coconutcraig/laravel-postmark

Laravel package for sending mail via the Postmark API

2152.9M1](/packages/coconutcraig-laravel-postmark)[eduardokum/laravel-mail-auto-embed

Library for embed images in emails automatically

1702.0M5](/packages/eduardokum-laravel-mail-auto-embed)[illuminate/notifications

The Illuminate Notifications package.

483.0M967](/packages/illuminate-notifications)[mailjet/mailjet-swiftmailer

A SwiftMailer transport implementation for Mailjet

261.2M9](/packages/mailjet-mailjet-swiftmailer)

PHPackages © 2026

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