PHPackages                             king052188/kpapostmail - 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. king052188/kpapostmail

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

king052188/kpapostmail
======================

This is KPAPostMail Service

1.0.1(8y ago)039MITPHP

Since Nov 2Pushed 8y agoCompare

[ Source](https://github.com/king052188/KPAPostMail)[ Packagist](https://packagist.org/packages/king052188/kpapostmail)[ RSS](/packages/king052188-kpapostmail/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

KPAPostMail - Email Launcher for Laravel
========================================

[](#kpapostmail---email-launcher-for-laravel)

[![Latest Stable Version](https://camo.githubusercontent.com/2eebcea6e3ae13bd8ae420c8f1f12cdfa9aa84e2c021dd7ab704a7950debbebd/68747470733a2f2f706f7365722e707567782e6f72672f6b696e673035323138382f6b7061706f73746d61696c2f762f737461626c65)](https://packagist.org/packages/king052188/kpapostmail)[![Total Downloads](https://camo.githubusercontent.com/af4a4df0e11e83b493a482f489c84ffdb5da82af0b09734856b9f2f1dc2bf489/68747470733a2f2f706f7365722e707567782e6f72672f6b696e673035323138382f6b7061706f73746d61696c2f646f776e6c6f616473)](https://packagist.org/packages/king052188/kpapostmail)[![Latest Unstable Version](https://camo.githubusercontent.com/16cd2b4cbc77264bac41de5ad74fb670f110831db94e4c3b3e4f56abd44d58e1/68747470733a2f2f706f7365722e707567782e6f72672f6b696e673035323138382f6b7061706f73746d61696c2f762f756e737461626c65)](https://packagist.org/packages/king052188/kpapostmail)[![License](https://camo.githubusercontent.com/24dd53515a6087a503ccffe087f32b64e8a574358d71c3195bb67006851223b0/68747470733a2f2f706f7365722e707567782e6f72672f6b696e673035323138382f6b7061706f73746d61696c2f6c6963656e7365)](https://packagist.org/packages/king052188/kpapostmail)

KPAPostMail is a package for **Laravel 5+** that provides helpers for some common Mail Sending techniques.

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

[](#installation)

### 1 - Dependency

[](#1---dependency)

The first step is using composer to install the package and automatically update your `composer.json` file, you can do this by running:

```
composer require king052188/kpapostmail
```

> **Note**: If you are using Laravel 5.5, the steps 2 and 3, for providers and aliases, are unnecessaries. KPAPostMail supports Laravel new [Package Discovery](https://laravel.com/docs/5.5/packages#package-discovery).

### 2 - Provider

[](#2---provider)

You need to update your application configuration in order to register the package so it can be loaded by Laravel, just update your `config/app.php` file adding the following code at the end of your `'providers'` section:

> `config/app.php`

```
// file START ommited
    'providers' => [
        // other providers ommited
        king052188\KPAPostMail\KPAPostMailServiceProvider::class,
    ],
// file END ommited
```

### 3 - Facade

[](#3---facade)

> Facades are not supported in Lumen.

In order to use the `KPAPostMail` facade, you need to register it on the `config/app.php` file, you can do that the following way:

```
// file START ommited
    'aliases' => [
        'KPAPostMail' => king052188\KPAPostMail\Facades\KPAPostMail::class,
    ],
// file END ommited
```

### 4 Configuration

[](#4-configuration)

#### Publish config

[](#publish-config)

In your terminal type

```
php artisan vendor:publish
```

or

```
php artisan vendor:publish --provider="king052188\KPAPostMail\KPAPostMailServiceProvider"
```

### 5 Set up your API

[](#5-set-up-your-api)

In order to use the `KPAPostMail`, get your Access Token from here [Sign-Up](https://postmail.kpa.ph).

> `config/services.php`

```
// file START ommited
    'KPAPostMail' => [
        'domain' => env('KPAPostMail_DOMAIN', 'postmail.kpa21.info'),
        'email' => env('KPAPostMail_EMAIL', 'YOUR-EMAIL-ADDRESS'),
        'uid' => env('KPAPostMail_UID', 'YOUR-UID'),
    ],
// file END ommited
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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

Unknown

Total

1

Last Release

3115d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7550d8e184d10ea5de440642b1ada31f800b1d3eb4d445403e3c78bc9c4dc6cf?d=identicon)[king052188](/maintainers/king052188)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/king052188-kpapostmail/health.svg)

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

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

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