我想为我发送的电子邮件使用布局。我目前正在为网页使用 Zend Layout,但也想为我的电子邮件设置主题。
这是我尝试过的。
这是我发送电子邮件的功能
$layout = Zend_Layout::getMvcInstance();
$this->_view->render($template);
$html = $layout->render('email');
$this->setBodyHtml($html,$this->getCharset(), $encoding);
$this->send();
电子邮件布局很简单
The email content
<?php echo $this->layout()->content; ?>
当它作为电子邮件发送时,它只是...
The email content