Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

J mail Query ??

Status
Not open for further replies.

obaluba

Technical User
Sep 24, 2001
49
GB
Hello, I'm not sure this is the correct forum but its the closest i can think! On the server i use for my site i have Jmail which is the formmail. I am trying to make a web form which when filled in arrives at my email. So far i have made it send the email with the correct subject etc.. the only problem is the 'body' of the email. In the webform there are multiple tickboxes and text boxes etc.. What i want if possible is these to be displayed in the body. The code is below:

<html>
<head>
<title>Contact Form</title>
</head>
<body bgcolor=&quot;&quot; link=&quot;#000066&quot; text=&quot;#000000&quot;>
<p align=&quot;center&quot;>&nbsp;
<p align=&quot;center&quot;>
<%

' Get the form data
name = Request.Form(&quot;name2&quot;)
senderEmail = Request.Form(&quot;email&quot;)
subject = &quot;Regarding &quot; & Request.Form(&quot;Orgbelongto&quot;)
recipient = Request.Form(&quot;recipient&quot;)
body = Request.Form(&quot;object1&quot;)

Object 1 above displays, however i have Object 2,3,4 etc.. which are textboxes which i want to display in the body of the email too. How is this done?

I would appreciate any help!

thanks very much in advance!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top