prezent / inky
PHP implementation of Zurb's Inky parser
Installs: 259 449
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 9
Forks: 0
Open Issues: 0
Requires
- php: ^7.0|^8.0
- ext-dom: *
Requires (Dev)
- symfony/css-selector: ^3.4|^4.0|^5.0
- symfony/dom-crawler: ^3.4|^4.0|^5,0
This package is auto-updated.
Last update: 2024-11-04 16:32:50 UTC
README
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>');