prezent/inky

PHP implementation of Zurb's Inky parser

0.1.2 2021-08-04 09:01 UTC

This package is auto-updated.

Last update: 2024-04-04 15:22:10 UTC


README

Build Status

A PHP implementation of Zurb's Inky parser.

Installation

You can use Composer to install this library

composer require prezent/inky

Usage

Simply create a new Inky instance and feed it an email template.

use Prezent\Inky\Inky;

$inky = new Inky();
echo $inky->parse('<html>....</html>');