text.php 341 B

1234567891011121314
  1. <?php
  2. use yii\helpers\Html;
  3. /** @var \yii\web\View $this view component instance */
  4. /** @var \yii\mail\MessageInterface $message the message being composed */
  5. /** @var string $content main view render result */
  6. ?>
  7. <?php $this->beginPage() ?>
  8. <?php $this->beginBody() ?>
  9. <?= $content ?>
  10. <?php $this->endBody() ?>
  11. <?php $this->endPage() ?>