Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 474 Bytes

index.md

File metadata and controls

34 lines (25 loc) · 474 Bytes

#Installation

For Symfony 2.1

Add iJankiMailMimeDecodeBundle in your composer.json

{
    "require": {
        "ijanki/mailmimedecode-bundle": "dev-master"
    }
}

For Symfony 2.0

Enable the bundle

Finally, enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Ijanki\Bundle\MailMimeDecode\MailMimeDecodeBundle(),
    );
}

WORK IN PROGRESS