ae053ad037
add imap class to access captured emails add mail controller to framework (display content)
24 lines
368 B
PHP
24 lines
368 B
PHP
<?php
|
|
/**
|
|
* @author markus
|
|
* $Id: IndexController.php 6 2009-11-18 14:52:50Z markus $
|
|
*/
|
|
|
|
require_once(LIBRARY_PATH . '/imap/imapConnection.php');
|
|
|
|
class MailController extends Zend_Controller_Action
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
/* Initialize action controller here */
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
// action body
|
|
}
|
|
|
|
|
|
}
|
|
|