PHPackages                             frogbob/laravel-blinky - 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. frogbob/laravel-blinky

ActiveLibrary

frogbob/laravel-blinky
======================

Foundation Inky email templates in Laravel

0.0.3(6y ago)12101[2 issues](https://github.com/frogbob/laravel-blinky/issues)MITPHP

Since Jul 24Pushed 6y ago1 watchersCompare

[ Source](https://github.com/frogbob/laravel-blinky)[ Packagist](https://packagist.org/packages/frogbob/laravel-blinky)[ RSS](/packages/frogbob-laravel-blinky/feed)WikiDiscussions master Synced today

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

Laravel Blinky
==============

[](#laravel-blinky)

[![Laravel Blinky](https://camo.githubusercontent.com/89cdca2f85a144e20b762b50d57c642f41ae6b02d1d2078fe4d5e3c67fb6d1fb/687474703a2f2f6170692e6465766261722e756c747261626f6c642e64652f6769746875623f746578743d4c61726176656c253230426c696e6b79)](https://camo.githubusercontent.com/89cdca2f85a144e20b762b50d57c642f41ae6b02d1d2078fe4d5e3c67fb6d1fb/687474703a2f2f6170692e6465766261722e756c747261626f6c642e64652f6769746875623f746578743d4c61726176656c253230426c696e6b79)

**Inky-Compiler for Laravel blade-files**

Allows you to use Foundation's [Inky](http://foundation.zurb.com/emails/docs/inky.html) email templates nicely in Laravel.

It uses our [InkyPHP](https://github.com/frogbob/inky-php) to compile inky-language to its html-version.

Any views with a `.inky.php` extension will be compiled with both Inky and Blade, allowing you to use both templating engines seamlessly together. CSS is automatically inlined so styles work in email clients that don't support external stylesheets.

### Docs

[](#docs)

- [Installation](#installation)
- [Usage and Examples](#usage-and-examples)
- [Notes](#notes)
- [License](#license)

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

[](#installation)

Require with composer

```
composer require frogbob/laravel-blinky

```

Once installed, you'll need to register the service provider. Open `config/app.php` and add to the `providers` key:

```
Frogbob\LaravelBlinky\BlinkyServiceProvider::class

```

Usage and Examples
------------------

[](#usage-and-examples)

Check the [Foundation for Emails docs](http://foundation.zurb.com/emails/docs/index.html) for full usage on how to use Inky and Foundation for Emails CSS.

Create an Inky view e.g. `emails/welcome.inky.php`

```

    Welcome, {{ $name }}

```

Use `Mail` as usual in Laravel

```
Mail::send('emails.welcome', ['name' => $user->name], function ($m) use ($user) {
  $m->from('hello@app.com', 'Your Application');

  $m->to($user->email, $user->name)->subject('Welcome!');
});
```

You can create a Blade layout to inherit from e.g. `emails/layout.inky.php`

```
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

  @yield('content')

```

then

```
@extends('emails.layout')

@section('content')

      Welcome, {{ $name }}

@stop
```

### CSS Inlining

[](#css-inlining)

`` and `` are automatically inlined.

The location of your `` `href` is resolved to the `resources/assets/css` directory, so in the example above it expects some CSS at `resources/assets/css/foundation-emails.css`.

Here's a handy reference for CSS in emails: [CSS Support Guide for Email Clients](https://www.campaignmonitor.com/css/)

**Ignore CSS inlining**

Maybe you want to ignore the css inlining.

Just update add following settings to `config/views.php`:

```
    'laravel_blinky' => [
        'use_inliner' => false
    ]
```

Notes
-----

[](#notes)

Package based on [Laravel Inky](https://github.com/petecoop/laravel-inky) created by [petecoop](https://github.com/petecoop)

Unfortunately his Package seems to be abandoned and can not be installed on Laravel Versions &gt;= 5.5.

License
-------

[](#license)

See the [LICENSE](LICENSE) file for license info (it's the MIT license).

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

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 ~74 days

Total

3

Last Release

2335d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/74704c23d1a3ea66e1ddd18de4e90635ea4a2c28838e72ad49ba947694f7988e?d=identicon)[Flobbos](/maintainers/Flobbos)

![](https://www.gravatar.com/avatar/0aee2bb6ece6b3ea3c63ee409181879e861307b9b8165d4f5e3285aadd710d7e?d=identicon)[vanderb](/maintainers/vanderb)

![](https://www.gravatar.com/avatar/a24e22e821b5755bfa1bbfd0c1f684cf41c0f749ff0e7dc10ee15f6ef3db8c64?d=identicon)[frogbob](/maintainers/frogbob)

---

Top Contributors

[![vanderb](https://avatars.githubusercontent.com/u/2151453?v=4)](https://github.com/vanderb "vanderb (17 commits)")

---

Tags

laravelfoundationinky

### Embed Badge

![Health badge](/badges/frogbob-laravel-blinky/health.svg)

```
[![Health](https://phpackages.com/badges/frogbob-laravel-blinky/health.svg)](https://phpackages.com/packages/frogbob-laravel-blinky)
```

###  Alternatives

[proengsoft/laravel-jsvalidation

Validate forms transparently with Javascript reusing your Laravel Validation Rules, Messages, and FormRequest

1.1k2.3M49](/packages/proengsoft-laravel-jsvalidation)[glhd/aire

Modern Laravel form builder. Remembers old input, retrieves error messages and comes with beautiful Tailwind-based markup out of the box.

545265.3k7](/packages/glhd-aire)[torchlight/torchlight-laravel

A Laravel Client for Torchlight, the syntax highlighting API.

120452.8k11](/packages/torchlight-torchlight-laravel)[dragon-code/pretty-routes

Pretty Routes for Laravel

10058.7k4](/packages/dragon-code-pretty-routes)[bjuppa/laravel-blog

Add blog functionality to your Laravel project

483.3k2](/packages/bjuppa-laravel-blog)[laragear/poke

Keep your forms alive, avoid TokenMismatchException by gently poking your Laravel app

2211.5k](/packages/laragear-poke)

PHPackages © 2026

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