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

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

ognjen/laravel-async-mail
=========================

Send async mails from Laravel

v3.0.0(4y ago)15.1k↓50%MITPHP

Since Feb 11Pushed 4y ago1 watchersCompare

[ Source](https://github.com/ognjen-petrovic/laravel-async-mail)[ Packagist](https://packagist.org/packages/ognjen/laravel-async-mail)[ RSS](/packages/ognjen-laravel-async-mail/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

laravel-async-mail
==================

[](#laravel-async-mail)

Sends async mails from Laravel.

As Laravel documentation says:

> Since sending email messages can drastically lengthen the response time of your application, many developers choose to queue email messages for background sending. Laravel makes that easy using its built-in unified queue API.

This aproach is different, it leverages "Symfony\\Component\\Process\\Process" class to create separate PHP process and sends an "Illuminate\\Mail\\Mailable" using artisan command.

### Install

[](#install)

Require package with Composer:

```
composer require ognjen/laravel-async-mail:v3.0.0

```

### Usage example

[](#usage-example)

```
