2017 © Pedro Peláez
 

symfony-bundle imap-bundle

Imap bundle for Symfony2

image

webeith/imap-bundle

Imap bundle for Symfony2

  • Wednesday, July 9, 2014
  • by webeith
  • Repository
  • 1 Watchers
  • 2 Stars
  • 16,342 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 5 Open issues
  • 1 Versions
  • 8 % Grown

The README.md

ImapBundle

License Total Downloads, (*1)

Usage Example

``` php $this->getContainer()->get('imap')->getMailBox('mailbox_name');, (*2)

Configuration config.yml example
-------------

``` yml
webeith_imap:
    mailboxes:
        hotmail_user
            login: "example@hotmail.com"
            password: "password"
            port: 995
            connection_string: "{imap.gmail.com:993/imap/ssl}INBOX"
            encoding: "utf-8"
            attachments_dir: "/tmp/"
        gmail_user_inbox:
            login: "example@gmail.com"
            password: "password"
            connection_string: "{imap.gmail.com:993/imap/ssl}INBOX"
            encoding: "utf-8"
            attachments_dir: "/tmp/"

Installation

Install via Composer

Add the following lines to your composer.json file and then run php composer.phar install or php composer.phar update:, (*3)

{
    "require": {
        "webeith/imap-bundle": "dev-master"
    }
}

Register the bundle

To start using the bundle, register it in app/AppKernel.php:, (*4)

public function registerBundles()
{
    $bundles = array(
        // Other bundles...
        new Webeith\ImapBundle\WebeithImapBundle(),
    );
}

The Versions

09/07 2014

dev-master

9999999-dev

Imap bundle for Symfony2

  Sources   Download

MIT

The Requires

 

by Avatar webeith

imap