<?php
/*
*
* Remote Mail Client
* CopyLEFT 2004 by Maurizio Pinotti
*
* You can freely distribute this script as long as you do *NOT* edit it:
* editing is only permitted for private use.
*
* ----------------------------------------------------------------------
* Official site: http://www.pinottinet.com/rmail
* ----------------------------------------------------------------------
*
*/
// ------------------------- [ NO USER CONFIGURABLE ELEMENTS BELOW HERE ] ------------------------
if ($seen) {
$image = "images/seen.gif";
$tip = $lang['msg_seen'];
}
else {
$image = "images/unseen.gif";
$tip = $lang['msg_unseen'];
}
print <<<EOF
<html>
<head>
<link href="styles/{$CSS_STYLE}.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<img src="{$image}" alt="$tip" align="baseline">
<script language="JavaScript">
parent.buildSeenCookie('{$FORM_NAME}', '{$MESSAGE_PREFIX}', '{$SEEN_UNSEEN_PREFIX}', 0);
</script>
</body>
</html>
EOF;
?>