Nextras\MailPanel\MailPanel::getPanel PHP Method

getPanel() public method

public getPanel ( )
    public function getPanel()
    {
        if ($this->mailer === NULL) {
            return '';
        }
        return $this->getLatte()->renderToString(__DIR__ . '/MailPanel.latte', array('getLink' => array($this, 'getLink'), 'panelId' => substr(md5(uniqid('', TRUE)), 0, 6), 'messages' => $this->mailer->getMessages($this->messagesLimit)));
    }