0
私はMessageControllerと呼ばれる私のcontollerのコードを次のようしている。ここでtemp
yii 1で電子メールテンプレートを電子メールに組み込む方法は?
$letter = $this->renderPartial('temp');
$message=$letter;
$mail = new YiiMailer('contact',array('message'=>$message,'name'=>'Message','description' => 'Message'));
$mail->setSubject('Message');
$mail->setFrom('[email protected]', 'Company');
$mail->setTo($_POST['useremail']);
は、電子メールテンプレート($letter = $this->renderPartial('temp');
)です。 メールテンプレートは読み込まれていません。 temp.php
はmessage
ビューフォルダにあります。私の電子メールに電子メールテンプレートを含めるにはどうすればいいですか?