PHPackages                             rebelmiles/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. [Templating &amp; Views](/categories/templating)
4. /
5. rebelmiles/laravel-blinky

ActiveLibrary[Templating &amp; Views](/categories/templating)

rebelmiles/laravel-blinky
=========================

Foundation Inky email templates in Laravel

0.1.2(7y ago)0688↓100%MITPHP

Since Sep 14Pushed 7y ago1 watchersCompare

[ Source](https://github.com/rebelmiles/laravel-blinky)[ Packagist](https://packagist.org/packages/rebelmiles/laravel-blinky)[ RSS](/packages/rebelmiles-laravel-blinky/feed)WikiDiscussions master Synced 1mo ago

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

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

Sadly his Package was not updated for about 1 year and can not be installed on current Laravel Versions 5.5, 5.6 and 5.7.

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

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.

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

[](#installation)

Require with composer

```
composer require vanderb/laravel-blinky

```

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

```
Vanderb\LaravelBlinky\BlinkyServiceProvider::class

```

Usage
-----

[](#usage)

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
    ]
```

Licence
-------

[](#licence)

[MIT Licence](LICENCE)

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.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 ~99 days

Total

3

Last Release

2600d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

laravelfoundationinky

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.6k](/packages/craftcms-cms)[rcrowe/twigbridge

Adds the power of Twig to Laravel

9105.9M50](/packages/rcrowe-twigbridge)[tightenco/jigsaw

Simple static sites with Laravel's Blade.

2.2k438.5k29](/packages/tightenco-jigsaw)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[moonshine/moonshine

Laravel administration panel

1.3k217.1k59](/packages/moonshine-moonshine)[radic/blade-extensions

Laravel package providing additional Blade extensions: foreach (with $loop data like twig), break, continue, set,array (multiline), etc

271321.7k5](/packages/radic-blade-extensions)

PHPackages © 2026

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