webeith/imap-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

webeith/imap-bundle

Composer 安装命令:

composer require webeith/imap-bundle

包简介

Imap bundle for Symfony2

关键字:

README 文档

README

License Total Downloads

Usage Example

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

Configuration config.yml example

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:

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

统计信息

  • 总下载量: 58.83k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-07-09