Easy responsive e-emails using Foundation and Inky.
- Installation (see below)
- Getting started
- Custom Inky Components
- E-mail preview for development
This bundle can be installed using Composer. Tell composer to install the bundle:
$ php composer.phar require prezent/ink-bundle
Then, activate the bundle in your kernel:
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Prezent\InkBundle\PrezentInkBundle(),
);
}
You can optionally set the public\_dir
option where this bundle will look for CSS files referenced in your e-mail messages.
prezent_ink:
public_dir: '%kernel.project_dir%/public'