<html>
<head>
<title>Sample Email 2</title>
</head>
<body>
<?php echo $hi ?>
<?php echo $to ?>
</body>
</html>
$this->loadHelper('email');
$emailInfo=array('to'=>'hello@example.com','subject'=>MAIL_SUBJECT,
'message'=>MAIL_MESSAGE);
$this->Email->sendHtml($emailInfo);
$message=array("hi"=>"Hello","to"=>"Every one");
$emailInfo=array('to'=>'hello@example.com','subject'=>MAIL_SUBJECT,'message'=>
$message,'emailformat'=>MAIL_EMAILFORMAT);
$this->Email->sendHtml($emailInfo);