送信するメールにレイアウトを使用したいと考えています。私は現在、Web ページに 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