<html>
<head></head>
<body>
	<table>
		<tr>
			<td><img src="<?php echo URL::to('/');; ?>/img/logo.png"/></td>
		</tr>
		 
		<?php foreach($chatdata as $v): ?>
		<tr>
			 
			<?php if($v->from == $fromid): ?>
				<?php echo $fromname; ?>: <?php echo $v->message; ?>
			<?php else: ?>
				<?php echo $toname; ?>: <?php echo $v->message; ?>
			<?php endif; ?>
			 </br>
		</tr>
		<?php endforeach; ?>
		<tr>
			<strong>Thanks</strong><br/>
			Golars.
		</tr>
	</table>
</body>
</html>
