PHPackages                             laravel-notification-channels/maillift - 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. laravel-notification-channels/maillift

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

laravel-notification-channels/maillift
======================================

MailLift Notifications driver

18PHP

Since Sep 12Pushed 6y ago1 watchersCompare

[ Source](https://github.com/laravel-notification-channels/maillift)[ Packagist](https://packagist.org/packages/laravel-notification-channels/maillift)[ RSS](/packages/laravel-notification-channels-maillift/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

MailLift notifications channel for Laravel 5.3
==============================================

[](#maillift-notifications-channel-for-laravel-53)

[![Latest Version on Packagist](https://camo.githubusercontent.com/09fde2283a68a15f4f17e31b691b3d46e5459f8c85701f971e578ff67dcd3c89/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6d61696c6c6966742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/maillift)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/a1e78c961116bee5cb2f6465f27a6a900243f9cb26fed71987034220f276304c/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6d61696c6c6966742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/maillift)[![StyleCI](https://camo.githubusercontent.com/daf9054e568e849ddbde0af41ca663582d0fca2e426f1c65befabb1b99e526b9/68747470733a2f2f7374796c6563692e696f2f7265706f732f36363237333932392f736869656c64)](https://styleci.io/repos/65743131)[![SensioLabsInsight](https://camo.githubusercontent.com/aff4180f9977bffe6df165afbd34a2f72e03c844326379a698096a73501b0f98/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f34383362333862632d653537392d343636312d386139372d6134363965316532343938382e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/483b38bc-e579-4661-8a97-a469e1e24988)[![Quality Score](https://camo.githubusercontent.com/fb753b23ecc1ddf935b39c23c6e380ef563440c94f322d23520e538f419a873f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6d61696c6c6966742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/maillift)[![Code Coverage](https://camo.githubusercontent.com/dbd1ad0dc536a3026b7210e11d8e083457e53e69931c4bf14837be24ac8355bc/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6d61696c6c6966742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/maillift/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/9e2078c4d6eb017d5a856555bc77daab4c18aaedb96eac9b6e8d6603efa575e8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6d61696c6c6966742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/maillift)

Mailift EOL
-----------

[](#mailift-eol)

Mailift is no longer in operation. As a result, this channel is **deprecated**.

This package makes it easy to create [MailLift tasks](https://maillift.com/) with Laravel 5.3.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the MailLift service](#setting-up-the-maillift-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require laravel-notification-channels/maillift
```

### Setting up the MailLift service

[](#setting-up-the-maillift-service)

Register at [maillift.com](https://maillift.com).

Add your MailLift username and API key to your `config/services.php`:

```
// config/services.php
...
'maillift' => [
    'user' => env('MAILLIFT_USERNAME'),
    'key' => env('MAILLIFT_API_KEY'),
],
...
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use NotificationChannels\MailLift\MailLiftChannel;
use NotificationChannels\MailLift\MailLiftMessage;
use Illuminate\Notifications\Notification;

class ProjectCreated extends Notification
{
    public function via($notifiable)
    {
        return [MailLiftChannel::class];
    }

    public function toMailLift($notifiable)
    {
        return MailLiftMessage::create('This is my handwritten letter body')
            ->sender('Laravel Notification Channels'. PHP_EOL . 'Some street 123');
    }
}
```

In order to let your notification know which address you want to send the handwritten letter to, add the `routeNotificationForMailLift` method to your Notifiable model.

This method needs to return a string with the recipient address. Use line breaks (\\n character) to separate lines in the field.

```
public function routeNotificationForMailLift()
{
    return 'Recipient Name' . PHP_EOL . 'Recipient Address' . PHP_EOL . 'Recipient State / Postal Code';
}
```

### Available methods

[](#available-methods)

- `body('')`: Accepts a string value for the MailLift letter body.
- `sender('')`: Accepts a string value for the MailLift sender. Use line breaks (\\n character) to separate lines in the field.
- `scheduleDelivery('')`: Accepts a string or DateTime object for the scheduled delivery date.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Marcel Pociot](https://github.com/mpociot)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 87.5% 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/20937037?v=4)[Laravel Notification Channels](/maintainers/laravel-notification-channels)[@laravel-notification-channels](https://github.com/laravel-notification-channels)

---

Top Contributors

[![mpociot](https://avatars.githubusercontent.com/u/804684?v=4)](https://github.com/mpociot "mpociot (7 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (1 commits)")

### Embed Badge

![Health badge](/badges/laravel-notification-channels-maillift/health.svg)

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

###  Alternatives

[mattketmo/email-checker

Throwaway email detection library

2752.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)
