Je kunt een samenvatting van je agenda tonen op een lokale pagina, die je weer kunt gebruiken als pagina achter een van je mesage-boxen in Outlook (via de eigenschappen van de map, tabblad: Introductiepagina):
De code bestaat uit een tabel in een tabel, tevens met een link naar je echte agenda in Outlook:
<html>
<head>
<title>Mijn Inbox-pagina</title>
<style type="text/css">
<!--
.insideControlBox {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px; }
.normallink {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
text-decoration: text-decoration;
line-height: 18px;}
.times { font-size:8pt;
line-height:11pt;
font-family:Tahoma;
text-decoration:none;
cursor:hand;
color:#FFFFCC; }
.itemNormal { font-size:8pt;
font-family:Tahoma;
line-height:11pt;
text-decoration:none;
color: #FFFFFF; }
.dayHeaders { font-family:Tahoma;
font-size:8pt;
font-weight:bold;
letter-spacing:0.1em;
text-transform:lowercase;
width:95%;
border-color:lightsteelblue;
border-width:1px;
border-bottom-style:solid;
border-top-style:none;
border-right-style:none;
border-left-style:none;
color: #99FF66; }
.nextAppt { font-family: Webdings;
font-size: 10pt;
color: #99FF66;
}
-->
</style>
</head>
<body>
<!-- hier begint tabel calendar-kort -->
<table border="0" width="500" cellpadding="5" cellspacing="0">
<tr>
<td width="500" valign="top" class="ControlBoxTitle">
<a href="outlook://Personal%20Folders/Calendar" class="normallink">Agenda</a>
</td>
</tr>
<tr>
<td width="500" height="25" valign="top">
<!-- calendar-nugget deel 1-->
<table id="CalendarLiveTable" border="0" cellspacing="0" cellpadding="2" valign="top" width="500" name="ItemCol" datasrc="#CalList">
<tr>
<td nowrap valign="top" width="10" align="left" style="font-family:Webdings;font-size:12px">
<div datafld="Next" DATAFORMATAS="html">
</div>
</td>
<td valign="top" nowrap width="100" height="20" class="insideControlBox">
<div DATAFLD="StartEnd" DATAFORMATAS="html">
</div>
</td>
<td valign="top" class="insideControlBox">
<div datafld="SubjectLocation" DATAFORMATAS="html">
</div>
</td>
</tr>
</table>
<!-- einde calendar-nugget deel 1-->
</td>
</tr>
<!-- begin calendar-nugget deel 2 -->
<tr>
<td width="500" height="26" valign="top" class="insideControlBox">
<object classid="CLSID:0468C085-CA5B-11D0-AF08-00609797F0E0" id="CalList" width="13" height="11">
<param NAME="Module" VALUE="Calendar">
</object>
</td>
</tr>
<!-- einde calendar-nugget deel 2 -->
</table>
<!-- hier eindigt tabel calendar-kort-->
</body>
</html>