text.php 314 B

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