Issues (33)

mail/layouts/html.php (1 issue)

Labels
Severity
1
<?php
2
use yii\helpers\Html;
3
4
/** @var \yii\web\View $this view component instance */
5
/** @var \yii\mail\MessageInterface $message the message being composed */
6
/** @var string $content main view render result */
7
?>
8
<?php $this->beginPage() ?>
9
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
10
<html xmlns="http://www.w3.org/1999/xhtml">
11
<head>
12
    <meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
0 ignored issues
show
The property charset does not seem to exist on __Application.
Loading history...
13
    <title><?= Html::encode($this->title) ?></title>
14
    <?php $this->head() ?>
15
</head>
16
<body>
17
    <?php $this->beginBody() ?>
18
    <?= $content ?>
19
    <?php $this->endBody() ?>
20
</body>
21
</html>
22
<?php $this->endPage() ?>
23