text.php 318 B

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