Admin_EmailController::bounceMailInboxDetailAction PHP Method

bounceMailInboxDetailAction() public method

    public function bounceMailInboxDetailAction()
    {
        $this->checkPermission("emails");
        $mail = $this->getBounceMailbox();
        $message = $mail->getMessage((int) $this->getParam("id"));
        $message->getContent();
        $this->view->mail = $mail;
        // we have to pass $mail too, otherwise the stream is closed
        $this->view->message = $message;
    }