Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 543 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 543 Bytes

prezent/inky

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>');