PHPackages                             camelcased/postmark-inbound-laravel - 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. camelcased/postmark-inbound-laravel

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

camelcased/postmark-inbound-laravel
===================================

This is an Inbound Parser for Postmark meant to be used with Laravel.

0.7.1(8y ago)111.3k1MITPHPPHP &gt;=5.6.4

Since Aug 14Pushed 8y ago4 watchersCompare

[ Source](https://github.com/camelCaseD/postmark-inbound-laravel)[ Packagist](https://packagist.org/packages/camelcased/postmark-inbound-laravel)[ RSS](/packages/camelcased-postmark-inbound-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (3)Versions (12)Used By (0)

Laravel Postmark Inbound Parser
===============================

[](#laravel-postmark-inbound-parser)

[![Build Status](https://camo.githubusercontent.com/c4ea54d9661ea7db35507684029a34182c97547c5f83a89d4e5aca79bb44f5eb/68747470733a2f2f7472617669732d63692e6f72672f63616d656c43617365442f706f73746d61726b2d696e626f756e642d6c61726176656c2e706e67)](https://travis-ci.org/camelCaseD/postmark-inbound-laravel) [![Coverage Status](https://camo.githubusercontent.com/3e257887628e83515e9546816432fa6bbe391d7ba7c4c14d8d695fe8dd46aefb/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f63616d656c43617365442f706f73746d61726b2d696e626f756e642d6c61726176656c2f62616467652e706e673f6272616e63683d6d6173746572)](https://coveralls.io/r/camelCaseD/postmark-inbound-laravel?branch=master) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/e095be1463857a52c8d1f931507f640028a576c5b600941d4a7d11f127396bce/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f63616d656c43617365442f706f73746d61726b2d696e626f756e642d6c61726176656c2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/camelCaseD/postmark-inbound-laravel/?branch=master)

This is an Inbound Parser for Postmark meant to be used with Laravel.

How To Use
==========

[](#how-to-use)

Config
------

[](#config)

Add the following service provider to `app/config/app.php`:

```
'Camelcased\Postmark\PostmarkServiceProvider',
```

You can also add the following alias:

```
'PostmarkEmail'   => 'Camelcased\Postmark\PostmarkEmail',
```

Basics
------

[](#basics)

Then anywhere within your app you can use the following:

```
PostmarkEmail::from();
PostmarkEmail::to();
PostmarkEmail::body(); // Auto-detects if message contains html or text only.
PostmarkEmail::bodyIsText();
PostmarkEmail::bodyIsHtml();
PostmarkEmail::subject();
PostmarkEmail::replyTo();
PostmarkEmail::cc(); // Returns array if more than one. Ex: ['someone@somewhere.com', 'hi@awesome.com']. Returns string if only one.
PostamrkEmail::bcc(); // Returns same as cc;
```

Attachments
-----------

[](#attachments)

Attachments are slightly more complicated:

```
PostmarkEmail::hasAttachments() // Returns true or false
PostmarkEmail::attachments(); // Returns array of attachments
```

Looping through multiple attachments:

```
if (PostmarkEmail::hasAttachments())
{
  $attachments = PostmarkEmail::attachments();

  foreach ($attachments as $attachment) {
    $attachment->Name();
    $attachment->Content(); // Returns base64 encoded string
    $attachment->DecodedContent(); // Returns decoded value
    $attachment->Type(); // Or use $attachment->MIME()
  }
}
```

License
=======

[](#license)

[MIT license](http://opensource.org/licenses/MIT)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.2% 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 ~114 days

Recently: every ~164 days

Total

10

Last Release

3261d ago

PHP version history (3 changes)0.2.0PHP &gt;=5.4.0

0.4.1PHP &gt;=5.5.0

0.6.0PHP &gt;=5.6.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/77048bb9407ff72b147eda0501b11d0cb39754f1909e65b9cd7984339a407731?d=identicon)[camelCaseD](/maintainers/camelCaseD)

---

Top Contributors

[![camelCaseD](https://avatars.githubusercontent.com/u/1644022?v=4)](https://github.com/camelCaseD "camelCaseD (51 commits)")[![BirdyUK](https://avatars.githubusercontent.com/u/25714822?v=4)](https://github.com/BirdyUK "BirdyUK (1 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (1 commits)")

---

Tags

laravelphppostmarklaravelparseremailpostmarkinbound

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/camelcased-postmark-inbound-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/camelcased-postmark-inbound-laravel/health.svg)](https://phpackages.com/packages/camelcased-postmark-inbound-laravel)
```

###  Alternatives

[coconutcraig/laravel-postmark

Laravel package for sending mail via the Postmark API

2152.9M1](/packages/coconutcraig-laravel-postmark)[propaganistas/laravel-disposable-email

Disposable email validator

5762.6M6](/packages/propaganistas-laravel-disposable-email)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[osiemsiedem/laravel-autolink

A Laravel package for converting URLs in a given string of text into clickable links.

13126.3k](/packages/osiemsiedem-laravel-autolink)

PHPackages © 2026

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