PHPackages                             agenciafmd/admix-postal - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. agenciafmd/admix-postal

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

agenciafmd/admix-postal
=======================

Postal - Agência F&amp;MD

1.0.0(6y ago)06.8k↓33.3%1PHP

Since Nov 6Pushed 1y ago1 watchersCompare

[ Source](https://github.com/agenciafmd/admix-postal)[ Packagist](https://packagist.org/packages/agenciafmd/admix-postal)[ Docs](https://github.com/agenciafmd/admix-postal)[ RSS](/packages/agenciafmd-admix-postal/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (7)Used By (1)

F&amp;MD - Postal
-----------------

[](#fmd---postal)

[![Área Administrativa](https://github.com/agenciafmd/admix-postal/raw/master/docs/screenshot.png "Área Administrativa")](https://github.com/agenciafmd/admix-postal/raw/master/docs/screenshot.png)

[![Downloads](https://camo.githubusercontent.com/e6add11f2eb11ea940d123139841c1a3331e9b04209bbb20516a8d6a43b988f1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6167656e636961666d642f61646d69782d706f7374616c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/agenciafmd/admix-postal)[![Licença](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

- Map all forms from your application and send them to specific emails

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

[](#installation)

```
composer require agenciafmd/admix-postal:dev-master
```

Run the migrations

```
php artisan migrate
```

If you want to use the seeder, run

```
php artisan vendor:publish --tag=admix-postal:seeders
```

Usage
-----

[](#usage)

```
    // if you want to send attachments
    $attachments = null;
    if ($request->has('images')) {
        $images = $request->file('images');
        foreach ($images as $image) {
            $customName = Str::of($request->name)->slug() . '-' . Str::random(5) . '.' . $image->getClientOriginalExtension();
            /* TODO: refactor with Storage */
            $attachments[] = storage_path(
                'app/' . $image
                    ->storeAs('attachments', $customName, 'local')
            );
        }
    }

    // fill if you want to customize the subject
    $customSubject = null;
    Postal::query()
        ->where('slug', 'slug-of-created-form')
        ->first()
        ->notify(new SendNotification([
            'greeting' => $request->subject,
            'introLines' => [
                '**Nome:** ' . $request->name,
                '**E-mail:** ' . $request->email,
                '**Telefone:** ' . $request->phone,
                '**Cidade:** ' . $request->city . ' - ' . $request->state,
                '**Mensagem:** ' . nl2br($request->message),
            ],
        ], [$request->email => $request->name], $attachments, $customSubject));
```

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 94.4% 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 ~398 days

Recently: every ~383 days

Total

6

Last Release

386d ago

Major Versions

1.0.0 → v6.x-dev2021-02-08

v6.x-dev → v8.x-dev2022-04-18

v8.x-dev → v9.x-dev2023-09-26

v9.x-dev → v10.x-dev2023-12-01

v10.x-dev → v11.x-dev2025-04-22

### Community

Maintainers

![](https://www.gravatar.com/avatar/7e4d60ba30f409161026fd37c5a106cc32c4e4d29411f805553623cca632dd72?d=identicon)[agenciafmd](/maintainers/agenciafmd)

---

Top Contributors

[![irineujunior](https://avatars.githubusercontent.com/u/260451?v=4)](https://github.com/irineujunior "irineujunior (67 commits)")[![eduardo-rogerio](https://avatars.githubusercontent.com/u/62898595?v=4)](https://github.com/eduardo-rogerio "eduardo-rogerio (2 commits)")[![TarsisioXavier](https://avatars.githubusercontent.com/u/24587222?v=4)](https://github.com/TarsisioXavier "TarsisioXavier (2 commits)")

---

Tags

laravelpostalagenciafmd

### Embed Badge

![Health badge](/badges/agenciafmd-admix-postal/health.svg)

```
[![Health](https://phpackages.com/badges/agenciafmd-admix-postal/health.svg)](https://phpackages.com/packages/agenciafmd-admix-postal)
```

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[gehrisandro/tailwind-merge-laravel

TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them

341682.2k18](/packages/gehrisandro-tailwind-merge-laravel)[nickurt/laravel-akismet

Akismet for Laravel 11.x/12.x/13.x

97139.6k2](/packages/nickurt-laravel-akismet)[whitecube/laravel-timezones

Store UTC dates in the database and work with custom timezones in the application.

106106.2k](/packages/whitecube-laravel-timezones)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[forxer/laravel-gravatar

A library providing easy gravatar integration in a Laravel project.

4235.6k](/packages/forxer-laravel-gravatar)

PHPackages © 2026

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