$future[$n] = "
| $firstName
$lastName | $email | $voicemail | $start_date2 | $end_date2 |
";
print qq~Future Out of Office List
~;
print qq~
~;
print qq~The following will be out of the office
until the date specified:~;
print qq~
~;
print qq~ | Employee | Checking
E-mail | Checking Voicemail | Leaving | Returning~;
for($i = 0; $i < @future; $i++) {
print qq~$future[$i]~;
}
print qq~ |
|---|
~;
}