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

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

morenorafael/laravel-mail
=========================

Este paquete extiende el funcionamiento del servicio Mail de Laravel

v1.0.0(5y ago)13MITPHP

Since Nov 2Pushed 5y ago1 watchersCompare

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

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

Laravel Mail
============

[](#laravel-mail)

Este paquete extiende el funcionamiento del servicio Mail de Laravel

Instalación
-----------

[](#instalación)

```
composer require morenorafael/laravel-mail
```

Configuración
-------------

[](#configuración)

### SendGrid

[](#sendgrid)

Instalamos el SDK oficial de SendGrid:

```
composer require sendgrid/sendgrid
```

Agregamos al archivo de configuración `config/services.php` lo siguiente:

```
...

'sendgrid' => [
    'key' => env('SENDGRID_KEY'),
],

...
```

Agregamos al archivo de configuración `config/mail.php`, dentro del array `mailers` lo siguiente:

```
...

'sendgrid' => [
    'transport' => 'sendgrid',
],

...
```

### SendPulse

[](#sendpulse)

Instalamos el SDK oficial de sendinblue:

```
composer require sendinblue/api-v3-sdk
```

Agregamos al archivo de configuración `config/services.php` lo siguiente:

```
...

'sendinblue' => [
    'key' => env('SENDINBLUE_KEY'),
],

...
```

Agregamos al archivo de configuración `config/mail.php`, dentro del array `mailers` lo siguiente:

```
...

'sendpulse' => [
    'transport' => 'sendpulse',
],
...
```

Uso
---

[](#uso)

Pueden cosultar la documentacion del servicio Mail de laravel [aquí](https://laravel.com/docs/8.x/mail). De igual forma aca les muestro un pequeño ejemplo:

```
$user = new \App\Models\User([
    'email' => 'name@mail.com',
    'name' => 'Your Name'
]);

\Illuminate\Support\Facades\Mail::send('mails.welcome', [
    'email' => $user->email,
    'name' => $user->name,
], function ($mail) use ($user) {
    $mail->to($user->email, $user->name)->subject('Test');
});
```

Contribuir
----------

[](#contribuir)

Los pull request son bienvenidos. Para cambios importantes, abra un issue primero para discutir qué le gustaría cambiar.

Asegúrese de actualizar las pruebas según corresponda.

Licencia
--------

[](#licencia)

[MIT](https://github.com/morenorafael/laravel-mail/blob/master/LICENSE.md)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity55

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

Unknown

Total

1

Last Release

2004d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2c95b60926db40630fd1adcde10b614a4f2946bd8a9a76e0aaafcd7b2bc81279?d=identicon)[morenorafael](/maintainers/morenorafael)

### Embed Badge

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

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

###  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)
