Totally New at this so please bear with me.
Is there any way to email the my form and data to make more readable?
Thanks
Time.asp
</form>
<FORM method="POST" action="/cgi-bin/sendmail.asp" style="text-align:
left; line-height: 100%">
<p><input type="value" name="Job" size="21">
<input type="text" name="Thur" size="5">
<input type="text" name="Fri" size="5">
<input type="text" name="Sat" size="5">
<input type="text" name="Sun" size="5">
<input type="text" name="Mon" size="5">
<input type="text" name="Tue" size="5">
<input type="text" name="Wed" size="5">
</p>
<p> </p>
<p><input type="submit" value="Submit" name>
<input type="reset" value="Reset" name="B2"></p>
<p></p>
</form>
Sendmail.asp
<%
For Each x In Request.Form
message=message & x & ": " & Request.Form(x) & CHR(10)
Next
set smtp = Server.CreateObject("Bamboo.SMTP")
smtp.Server = "mail.xxxxx.net"
smtp.Rcpt = "xxxxx@mindspring.com"
smtp.From = "xxxxx@mindspring.com"
smtp.FromName = Request.ServerVariables("HTTP_REFERER")
smtp.Subject = "Your web form - " & Request.ServerVariables("HTTP_REFERER")
smtp.Message = message
on error resume next
smtp.Send
if err then
response.Write err.Description
else
response.Write ("Thank you for your submission.... Your message has
been delivered successfully.")
end if
set smtp = Nothing%>