Giter Site home page Giter Site logo

patriot / cakephp_imap_datasource Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dalpo/cakephp_imap_datasource

0.0 1.0 0.0 105 KB

Cakephp Imap datasource that allows querying the Imap mailbox of a configured account.

Home Page: http://github.com/dalpo/cakephp_imap_datasource

cakephp_imap_datasource's Introduction

Cakephp Imap datasource that allows querying the Imap mailboxes of configured account
Based on gwoo and mooose work: http://bin.cakephp.org/view/154300048

Datasource is under development but it basically works.. 


database.php configuration:
=================================================

class DATABASE_CONFIG {

  public $default = array(
	//your default db connection...
  );

  //imap email connection
  public $emailConnection = array(
          'datasource'   => 'imap',
          'host' => 'imap.example.net',
          'connect' => 'imap/notls',
          'login' => '[email protected]',
          'password' => 'pwd',
          'mailbox' => 'INBOX',
          'port' => '143'
  );

  public $test = array(
          'driver' => 'mysql',
          'persistent' => false,
          'host' => 'localhost',
          'login' => 'user',
          'password' => 'password',
          'database' => 'test_database_name',
          'prefix' => ''
  );
}




model configuration:
=================================================

class CompanyEmail extends AppModel {

  public $name = 'CompanyEmail';
  public $useDbConfig = 'emailConnection';
  public $useTable = false;
  public $displayField = "subject";

  
  //Model::exists()  must return true
  function exists($reset = false) {
    return true;
  }

}

finally in your controller you can retrive email:
=================================================
$emails = $this->CompanyEmail->find('all', array(
    'order' => array('message_date' => 'DESC')
  )
);



Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.