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

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

resent/laravel
==============

Resent for Laravel

v0.1.0(yesterday)01↑2900%MITPHPPHP ^8.1

Since Jul 27Pushed yesterdayCompare

[ Source](https://github.com/resentmail/resent-laravel)[ Packagist](https://packagist.org/packages/resent/laravel)[ Docs](https://resent.one)[ RSS](/packages/resent-laravel/feed)WikiDiscussions main Synced today

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

 [![Resent for Laravel](https://raw.githubusercontent.com/resentmail/resent-laravel/main/assets/banner.jpg?v=0.1.0)](https://resent.one)

Resent for Laravel
==================

[](#resent-for-laravel)

Official Laravel integration for [Resent](https://resent.one).

Install
-------

[](#install)

```
composer require resent/laravel
```

Configure
---------

[](#configure)

```
RESENT_API_KEY=re_xxxxxxxxx
MAIL_MAILER=resent
```

In `config/mail.php`:

```
'mailers' => [
    'resent' => [
        'transport' => 'resent',
    ],
],
```

Optional:

```
php artisan vendor:publish --tag=resent-config
```

Send with Laravel Mail
----------------------

[](#send-with-laravel-mail)

```
use Illuminate\Support\Facades\Mail;

Mail::html('It works!', function ($message) {
    $message->to('you@example.com')
        ->from('Acme ')
        ->subject('Hello from Resent');
});
```

Send with the bound client
--------------------------

[](#send-with-the-bound-client)

```
use Resent\Client;

app(Client::class)->emails->send([
    'from' => 'Acme ',
    'to' => 'you@example.com',
    'subject' => 'Hello',
    'html' => 'It works!',
]);
```

Links
-----

[](#links)

- Core: [resent/resent](https://packagist.org/packages/resent/resent)
- Symfony: [resent/symfony-mailer](https://packagist.org/packages/resent/symfony-mailer)
- Docs: [developers.resent.one/sdks/php](https://developers.resent.one/sdks/php)

License
-------

[](#license)

MIT © [Resent](https://resent.one)

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance100

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

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

Unknown

Total

1

Last Release

1d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/11556283?v=4)[resent](/maintainers/resent)[@resent](https://github.com/resent)

---

Tags

phpapilaravelsdkemailmailerresent

### Embed Badge

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

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

###  Alternatives

[resend/resend-laravel

Resend for Laravel

1222.7M9](/packages/resend-resend-laravel)[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M7](/packages/propaganistas-laravel-disposable-email)[illuminate/mail

The Illuminate Mail package.

5910.6M531](/packages/illuminate-mail)[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. 🚀

15130.8k](/packages/hafael-azure-mailer-driver)

PHPackages © 2026

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