PHPackages                             urchihe/laravel-mailjet - 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. urchihe/laravel-mailjet

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

urchihe/laravel-mailjet
=======================

mailjet packages with wrapper

184PHPCI failing

Since Jun 2Pushed 5y ago1 watchersCompare

[ Source](https://github.com/urchihe/laravel-mailjet)[ Packagist](https://packagist.org/packages/urchihe/laravel-mailjet)[ RSS](/packages/urchihe-laravel-mailjet/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Mailjet
===============

[](#laravel-mailjet)

Laravel package for handling Mailjet API v3 using this wrapper:

It also provides a mailjetTransport for [Laravel mail feature](https://laravel.com/docs/master/mail)

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

[](#installation)

First, include the package in your dependencies:

```
composer require urchihe/laravel-mailjet

```

Then, you need to add some informations in your configuration files. You can find your Mailjet API key/secret [here](https://app.mailjet.com/account/api_keys)

- In the services.php file:

```
'mailjet' => [
    'key' => env('MAILJET_APIKEY'),
    'secret' => env('MAILJET_APISECRET'),
    'transactional' => [
        'call' => true,
        'options' => [
            'url' => 'api.mailjet.com',
            'version' => 'v3.1',
            'call' => true,
            'secured' => true
        ]
    ],
    'common' => [
        'call' => true,
        'options' => [
            'url' => 'api.mailjet.com',
            'version' => 'v3',
            'call' => true,
            'secured' => true
        ]
    ]
]
```

- In your .env file:

```
MAILJET_APIKEY=YOUR_APIKEY
MAILJET_APISECRET=YOUR_APISECRET
```

Full configuration
------------------

[](#full-configuration)

```
'mailjet' => [
    'key' => env('MAILJET_APIKEY'),
    'secret' => env('MAILJET_APISECRET'),
    'transactional' => [
        'call' => true,
        'options' => [
            'url' => 'api.mailjet.com',
            'version' => 'v3.1',
            'call' => true,
            'secured' => true
        ]
    ],
    'common' => [
        'call' => true,
        'options' => [
            'url' => 'api.mailjet.com',
            'version' => 'v3',
            'call' => true,
            'secured' => true
        ]
    ]
]
```

You can pass settings to [MailjetClient](https://github.com/mailjet/mailjet-apiv3-php#new--version-120-of-the-php-wrapper-).

- `transactional`: settings to sendAPI client
- `common`: setting to MailjetClient accessible throught the Facade Mailjet

Mail driver configuration
-------------------------

[](#mail-driver-configuration)

In order to use Mailjet as your Mail driver, you need to update the mail driver in your `config/mail.php` or your `.env` file to `MAIL_MAILER=mailjet`, `MAIL_HOST=in-v3.mailjet.com`, `MAIL_PORT=2525` and to the `mailers` array in `config/mail` add

```
'mailjet' => [
            'transport' => 'mailjet',
            'host' => env('MAIL_HOST'),
            'port' => env('MAIL_PORT'),
            'encryption' => env('MAIL_ENCRYPTION', 'tls'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'timeout' => null,
        ],
```

.

For usage, please check the [Laravel mail documentation](https://laravel.com/docs/master/mail)

Usage
-----

[](#usage)

In order to usage this package, you first need to import Mailjet Facade in your code:

```
use Urchihe\LaravelMailjet\Facades\Mailjet;

```

Then, in your code you can use one of the methods available in the MailjetServices.

Low level API methods:

- `Mailjet::get($resource, $args, $options)`
- `Mailjet::post($resource, $args, $options)`
- `Mailjet::put($resource, $args, $options)`
- `Mailjet::delete($resource, $args, $options)`

High level API methods:

- `Mailjet::getAllLists($filters)`
- `Mailjet::createList($body)`
- `Mailjet::getListRecipients($filters)`
- `Mailjet::getSingleContact($id)`
- `Mailjet::createContact($body)`
- `Mailjet::createListRecipient($body)`
- `Mailjet::editListrecipient($id, $body)`

For more informations about the filters you can use in each methods, refer to the [Mailjet API documentation](https://dev.mailjet.com/email-api/v3/apikey/)

All method return `Mailjet\Response` or throw a `MailjetException` in case of API error.

You can also get the Mailjet API client with the method `getClient()` and make your own custom request to Mailjet API.

ToDo
----

[](#todo)

- Add additional unit tests to increase code coverage.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/22888482?v=4)[Uchenna Ihe](/maintainers/urchihe)[@urchihe](https://github.com/urchihe)

---

Top Contributors

[![urchihe](https://avatars.githubusercontent.com/u/22888482?v=4)](https://github.com/urchihe "urchihe (9 commits)")

---

Tags

driveremail-transportlaravel-mailjetlaravel7mail-drivermailermailjetmailjet-apimailjet-facadepackagisttransactional-emails

### Embed Badge

![Health badge](/badges/urchihe-laravel-mailjet/health.svg)

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

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

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