Add missing file '/mail/layouts/text.php' (#261)

This commit is contained in:
Anton 2022-04-26 21:57:19 +03:00 committed by GitHub
parent 94bfe89845
commit 6720c62f68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
mail/layouts/text.php Normal file
View File

@ -0,0 +1,13 @@
<?php
/**
* @var yii\web\View $this view component instance
* @var yii\mail\BaseMessage $message the message being composed
* @var string $content main view render result
*/
$this->beginPage();
$this->beginBody();
echo $content;
$this->endBody();
$this->endPage();