bedezign\yii2\audit\controllers\MailController::actionDownload PHP Method

actionDownload() public method

Download an AuditMail file as eml.
public actionDownload ( $id )
$id
    public function actionDownload($id)
    {
        $model = AuditMail::findOne($id);
        if (!$model) {
            throw new NotFoundHttpException('The requested mail does not exist.');
        }
        Yii::$app->response->sendContentAsFile(Helper::uncompress($model->data), $model->id . '.eml');
    }