<html>
 <head>
  <title>Message Detail</title>
 </head>
 <body>
  <al-form method="post">
   <al-input type="submit" name="list" value="Back">
  </al-form>
  <hr noshade>
  <table>
   <al-for iter="f" expr="('To', 'Cc', 'From', 'Subject')">
    <al-if expr="msg.hdrs[f.value()]">
     <tr align="left">
      <td><b><al-value expr="f.value()">:</b></td>
      <td><al-value expr="msg.hdrs[f.value()]"></td>
     </tr>
    </al-if>
   </al-for>
  </table>
  <hr noshade>
  <pre><al-value expr="msg.body"></pre>
 </body>
</html>
