ok, i just tryed to post this but it said i didnt have enuf permissions 

ok attempt 2:
ok ill keep it simple then 
the code below works, but it only shows the LAST "jmail.body" line:
<%
Dim Recipient, email, body
Recipient = "my email"
email = "senders email"
Set JMail = Server.CreateObject("JMail.SMTPMail")
' Below you should enter your own SMTP-server
JMail.ServerAddress = "smtp server"
JMail.Sender = email
JMail.Subject = "Feedback from " & page & " (my site)"
JMail.AddRecipient Recipient
For Each Field in Request.Form
Body = "<B>" & Field & "</B> - " & Request.Form(Field) & "<br>"
Next
JMail.Body = body & "temp"
JMAIL.ContentType = "text/html"
JMail.Priority = 3
JMail.AddHeader "Originating-IP", Request.ServerVariables("REMOTE_ADDR")
JMail.Logging = True
JMail.Execute
JMail.Close
Set JMail = nothing
%>
basically all i need to get working is the damm JMail.body part, as it only shows the last one eg:
jmail.body = "line 1"
jmail.body = "line 2"
only line 2 shows up
i hope you understand wot am askin, pppplllleeezzzz help 