<h2>Classes</h2>
These are nice data types for dealing with...  Data!<p>
<ul>
<li><a name="class_mail_header">
mail_header</a><pre>
class mail_header {
                    int number;
                    string status;
                    string subject;
                    string from;
}

</pre><br/>
The mail header class.<p>
<dl>
<dt><b>Members:</b>
<br/>number - the message number
<br/>status - the current status of the message
<br/>subject - the subject of the message
<br/>from - who the message is from

</dl>

<li><a name="class_mail_message">
mail_message</a><pre>
class mail_message {
                     string * to;
                     string * cc;
                     string body;
                     string from;
                     string subject;
}

</pre><br/>
The mail message class.<p>
<dl>
<dt><b>Members:</b>
<br/>to - the list of people the message is to
<br/>cc - the list of people the message is cced to
<br/>body - the actual message text
<br/>subject - the subject of the message

</dl>

</ul>
[an error occurred while processing this directive]

