<html>
<title>Format Email and Send</title>
<form method=post action=processform>
First Name: <input type=text name=Myfirstname size=15><br>
Last Name: <input type=text name=Mylastname size=20><br>
Street Address: <input type=text name=Mystreetaddress size=40><br>
City: <input type=text name=Mycity size=20><br>
State, Zip: <input type=text name=Mystate size=2 maxsize=2><br>
<input type=text name=Myzipcode size=10><br>
Email: <input type=text name=Myemail size=40><br>
Phone: <input type=text name=Myphone size=40><br>
Comments:<br>
<textarea name=Mycomments rows=5 cols=40>
</textarea><br>
<input type=submit value="Send">
</form>
</html>
<<OVERLAY processform
Mytext =
'<HTML>'
'<TABLE BORDER=0>' +
'<TR><TD>First:</TD><TD>' + Myfirstname + '</TD></TR>' +
'<TR><TD>Last:</TD><TD>' + Mylastname + '</TD></TR>' +
'<TR><TD>Street Address:</TD><TD>' + Mystreetaddress + '</TD></TR>' +
'<TR><TD>City:</TD><TD>' + Mycity + '</TD></TR>' +
'<TR><TD>State:</TD><TD>' + Mystate + '</TD></TR>' +
'<TR><TD>Zip Code:</TD><TD>' + Myzipcode + '</TD></TR>' +
'<TR><TD>Email:</TD><TD>' + Myemail + '</TD></TR>' +
'<TR><TD>Phone:</TD><TD>' + Myphone + '</TD></TR>' +
'<TR><TD>Comments:</TD><TD>' + Mycomments + '</TD></TR>' +
'</TABLE>'
NETMAILSEND("","yourname@yourserver.com","Subject Here",Mytext,
"40","","text/html","")
GOTO "thank_you.html"
>>