7 lines
199 B
PHP
7 lines
199 B
PHP
<?= $this->extend('layout/email_layout') ?>
|
|
|
|
<?php // Passes HTML body into the section your layout expects ?>
|
|
<?= $this->section('email_content') ?>
|
|
<?= $content ?? '' ?>
|
|
<?= $this->endSection() ?>
|