An open API service indexing awesome lists of open source software.

https://github.com/bigfishtv/cakephp-inline-style

A CakePHP 3 helper to automatically transform styles from <style> blocks to style="" attributes. Useful for HTML emails.
https://github.com/bigfishtv/cakephp-inline-style

cakephp-helper html-emails inline-styles

Last synced: 5 months ago
JSON representation

A CakePHP 3 helper to automatically transform styles from <style> blocks to style="" attributes. Useful for HTML emails.

Awesome Lists containing this project

README

          

# CakePHP InlineStyle helper

A CakePHP 3 helper to automatically transform styles from `` blocks to `style=""` attributes. Useful for HTML emails.

Internally uses the library https://github.com/christiaan/InlineStyle

## Installation

composer require bigfishtv/cakephp-inline-style

## Usage

For emails:

```php
$email->helpers(['InlineStyle']);
```

For regular pages. In your `App\View\AppView` class:

```php
$this->loadHelper('InlineStyle');
```