* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace Modules\Messages; /** * Email interface. * * @category Modules * @package Messages * @author OMS Development Team * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ interface Email { public function connect($host, $port, $user, $password); public function getListNew(); public function getListAll(); public function getMessage(); public function removeMessage(); public function setStatus(); }