I have following code in my contoller called MessageController:
$letter = $this->renderPartial('temp');
$message=$letter;
$mail = new YiiMailer('contact',array('message'=>$message,'name'=>'Message','description' => 'Message'));
$mail->setSubject('Message');
$mail->setFrom('anu.axmed@gmail.com', 'Company');
$mail->setTo($_POST['useremail']);
Here temp
is email template ($letter = $this->renderPartial('temp');
).
But, it is not loading email template. temp.php
is located in message
view folder. How can I impliment email template to my email?