Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 879 Bytes

index.md

File metadata and controls

47 lines (33 loc) · 879 Bytes

prezent/ink-bundle

Easy responsive e-emails using Foundation and Inky.

Index

  1. Installation (see below)
  2. Getting started
  3. Custom Inky Components
  4. E-mail preview for development

Installation

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(),
    );
}

Configuration

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'