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

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

alyahmmed/laravel-mail-campaigns
================================

0271CSS

Since Dec 25Pushed 8y ago1 watchersCompare

[ Source](https://github.com/alyahmmed/laravel-mail-campaigns)[ Packagist](https://packagist.org/packages/alyahmmed/laravel-mail-campaigns)[ RSS](/packages/alyahmmed-laravel-mail-campaigns/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

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

[](#installation)

This package needs Laravel 5.x

Begin by installing this package through Composer. Require it directly from the Terminal to take the last stable version:

```
$ composer require alyahmmed/laravel-mail-campaigns dev-master
```

Once this operation completes, you must add the service provider. Open `app/config/app.php`, and add a new item to the providers array.

```
'providers' => [
    // ...
    Alyahmmed\LaravelMailCampaigns\MailServiceProvider::class,
],
```

At this point the inliner should be already working with the default options. If you want to fine-tune these options, you can do so by publishing the configuration file:

```
$ php artisan vendor:publish --provider=Alyahmmed\LaravelMailCampaigns\MailServiceProvider
```

Then you should run database migrations to create mail tables:

```
$ php artisan migrate
```

Add the following to your main route file `routes/web.php` feel free to alter these routes to what suits you best

```
Route::group(['namespace' => 'Backend', 'prefix' => '/backend'], function()
{
    // mail marketing
    Route::any('mail/messages',
        ['as' => 'mail.messages', 'uses' => 'MailController@messagesHome']);
    Route::any('mail/messages/delete/{id}',
        ['as' => 'mail.messages.delete', 'uses' => 'MailController@deleteMessage']);
    Route::any('mail/messages/filter-emails/{id}',
        ['as' => 'mail.messages.filter-emails', 'uses' => 'MailController@filterEmails']);
    Route::any('mail/messages/update/{id}',
        ['as' => 'mail.messages.update', 'uses' => 'MailController@updateMessage']);
    Route::any('mail/statistics/{id}',
        ['as' => 'mail.messages.statistics', 'uses' => 'MailController@statistics']);
    Route::any('mail/messages/send-test',
        ['as' => 'mail.messages.send-test', 'uses' => 'MailController@sendTest']);
    Route::any('mail/messages/create',
        ['as' => 'mail.messages.create', 'uses' => 'MailController@createMeaage']);
    // mail markting - cron
    Route::get('mail/messages/send',
        ['as' => 'mail.messages.send', 'uses' => 'MailController@send']);
    // subscribers
    Route::any('mail/subscribers',
        ['as' => 'subscribers.index', 'uses' => 'SubscribersController@index']);
    Route::any('mail/subscribers/export',
        ['as' => 'subscribers.export', 'uses' => 'SubscribersController@export']);
    Route::any('mail/subscribers/{id}',
        ['as' => 'subscribers.find', 'uses' => 'SubscribersController@show']);
    Route::any('mail/subscribers/delete/{id}',
        ['as' => 'subscribers.delete', 'uses' => 'SubscribersController@delete']);
});

```

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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/2537281?v=4)[Ali Mohamed](/maintainers/alyahmmed)[@alyahmmed](https://github.com/alyahmmed)

---

Top Contributors

[![alyahmmed](https://avatars.githubusercontent.com/u/2537281?v=4)](https://github.com/alyahmmed "alyahmmed (10 commits)")

### Embed Badge

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

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

###  Alternatives

[mattketmo/email-checker

Throwaway email detection library

2742.1M5](/packages/mattketmo-email-checker)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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