Skip to content

unlooped/imap-bundle

 
 

Repository files navigation

ImapBundle

License Total Downloads

Usage Example

$this->getContainer()->get('imap')->getMailBox('mailbox_name');

Configuration config.yml example

webeith_imap:
    mailboxes:
        hotmail_user
            login: "[email protected]"
            password: "password"
            port: 995
            connection_string: "{imap.gmail.com:993/imap/ssl}INBOX"
            encoding: "utf-8"
            attachments_dir: "/tmp/"
        gmail_user_inbox:
            login: "[email protected]"
            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:

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

Register the bundle

To start using the bundle, register it in app/AppKernel.php:

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%