zend load view template kết hợp với smarty
//zend controller
function sendmailAction()
{
$row = model->query...vv
$newPass = 123;
//load view
$view = $this->getHelper('ViewRenderer')->view;
$view->fullname = $row['fullname'];
$view->email = $row['email'];
$view->password = $newPass;
$content = $view->render('mail/forgot_password.php');
//end load view
print_r($content);
}
//forgot_password.php
Hello: {$fullname};
account: {$email};
password: {$email};
Không có nhận xét nào:
Đăng nhận xét