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="" link="#000066" text="#000000">
<p align="center">
<p align="center">
<%
' Get the form data
name = Request.Form("name2"
senderEmail = Request.Form("email"
subject = "Regarding " & Request.Form("Orgbelongto"
recipient = Request.Form("recipient"
body = Request.Form("object1"
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!
<html>
<head>
<title>Contact Form</title>
</head>
<body bgcolor="" link="#000066" text="#000000">
<p align="center">
<p align="center">
<%
' Get the form data
name = Request.Form("name2"
senderEmail = Request.Form("email"
subject = "Regarding " & Request.Form("Orgbelongto"
recipient = Request.Form("recipient"
body = Request.Form("object1"
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!