Skip to content

Commit 6720c62

Browse files
Add missing file '/mail/layouts/text.php' (#261)
1 parent 94bfe89 commit 6720c62

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

mail/layouts/text.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
/**
4+
* @var yii\web\View $this view component instance
5+
* @var yii\mail\BaseMessage $message the message being composed
6+
* @var string $content main view render result
7+
*/
8+
9+
$this->beginPage();
10+
$this->beginBody();
11+
echo $content;
12+
$this->endBody();
13+
$this->endPage();

0 commit comments

Comments
 (0)