> How does one create a form in html that will post an email message
> to either a listserv or a person. I have read the docs I could find
I think that what you're looking for is the form tag. You might try
something like the following in the BODY section of your HTML file.
<form action="post" href="mailto:mylogin@myhost.com">
<!-- form goes here -->
</form>
For more information, try
<http://www.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimer.html>
matt();
http://www.engr.uark.edu/~mwf/