dev-master
9999999-dev http://www.pelagodesign.com/sidecar/emogrifier/Converts CSS styles into inline style attributes in your HTML code
MIT
The Requires
- php >=5.4.0
- pelago/emogrifier ^1.2
by Rocco Howard
laravel email css pre-processing
Wallogit.com
2017 © Pedro Peláez
Converts CSS styles into inline style attributes in your HTML code
_ __ _
(_)/ _(_)
___ _ __ ___ ___ __ _ _ __ _| |_ _ ___ _ __
/ _ \ '_ ` _ \ / _ \ / _` | '__| | _| |/ _ \ '__|
| __/ | | | | | (_) | (_| | | | | | | | __/ |
\___|_| |_| |_|\___/ \__, |_| |_|_| |_|\___|_|
__/ |
|___/
This package provides a Laravel wrapper to the Emogrifier package that provides the ability to convert CSS styles into inline style attributes in your HTML code., (*1)
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at hnh.digital., (*4)
Via composer:, (*5)
$ composer require hnhdigital-os/laravel-emogrifier ~2.0, (*6)
The service provider will autoload from Laravel 5.5., (*7)
Enable the facade by editing config/app.php:, (*8)
'aliases' => array(
...
'Emogrifier' => HnhDigital\Emogrifier\Facade::class,
...
)
To enable the service provider in versions prior to Laravel 5.4, edit the config/app.php:, (*9)
Enable the service provider by editing config/app.php:, (*10)
'providers' => array(
...
HnhDigital\Emogrifier\ServiceProvider::class,
...
)
$output = Emogrifier::parse($html, $css);
$output = app('Emogrifier')->parse($html, $css);
Please see CONTRIBUTING for details., (*11)
The MIT License (MIT). Please see License File for more information., (*12)
Converts CSS styles into inline style attributes in your HTML code
MIT
laravel email css pre-processing