PHPackages                             advicepharmagroup/mailup - 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. advicepharmagroup/mailup

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

advicepharmagroup/mailup
========================

Driver for sending emails via Mailup api

1.4.1(4mo ago)0901↑21.4%MITPHPPHP ^8.1|^8.2

Since Jul 30Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/advicepharmagroup/laravel-mailup)[ Packagist](https://packagist.org/packages/advicepharmagroup/mailup)[ Docs](https://github.com/advicepharmagroup/mailup)[ RSS](/packages/advicepharmagroup-mailup/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (6)Dependencies (4)Versions (6)Used By (0)

MailUp driver
=============

[](#mailup-driver)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ac7f9ca2d25402ab27cbab03a7f8fa24ce2c7bf5045464873889bf6e874d5385/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616476696365706861726d6167726f75702f6d61696c75702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/advicepharmagroup/mailup)[![Total Downloads](https://camo.githubusercontent.com/455b230263cf1ad22c9f5cb92248a771034c3140d45acebef79afac50a0d67dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616476696365706861726d6167726f75702f6d61696c75702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/advicepharmagroup/mailup)

A Laravel package for sending emails using the MailUp service API.

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

[](#installation)

You can install the package via composer:

```
composer require advicepharmagroup/mailup
```

Basic Usage
-----------

[](#basic-usage)

- In the `config/services.php` file add the following lines of code:

```
...

'mailup' => [
    'host'       => env('MAILUP_HOST'),
    'user'       => env('MAILUP_USER'),
    'secret'     => env('MAILUP_SECRET'),
    'proxy'      => env('MAILUP_PROXY'),
    'force_html' => true,
],

...
```

- In the `config/mail.php` file add the following lines of code:

```
'mailers' => [

    ...

    'mailup' => [
        'transport'  => 'mailup',
    ],
],
```

- In your .env file:

```
...

MAILUP_HOST=HOST
MAILUP_USER=YOUR_USERNAME
MAILUP_SECRET=YOUR_SECRET

...
```

- Example:

```
Route::get('/mail', function () {

    Mail::raw('Hello world', function (Message $message) {
        $message
            ->to('to@mail.com')
            ->from('from@mail.com');
    });

});
```

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance74

Regular maintenance activity

Popularity18

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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.

###  Release Activity

Cadence

Every ~139 days

Total

5

Last Release

148d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/135609569?v=4)[Advice Pharma Group s.r.l.](/maintainers/advicepharmagroup)[@advicepharmagroup](https://github.com/advicepharmagroup)

---

Top Contributors

[![flaviomaniscalco](https://avatars.githubusercontent.com/u/135622969?v=4)](https://github.com/flaviomaniscalco "flaviomaniscalco (12 commits)")

---

Tags

mailupadvicepharma

### Embed Badge

![Health badge](/badges/advicepharmagroup-mailup/health.svg)

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

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)

PHPackages © 2026

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