You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

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