This in not the usual request to receive an email form from a web site. It is how to create a HTML form to be manually sent to an email address, have it filled in, and returned to the sender by email.
I have searched this forum and the web and only found examples of presenting a form on a web site for fill in and submitting. My data collection form is already created but when I send it to myself I only get the html text instead of the form. My email client is set to send and receive html.
The form (form1.html) displays correctly in the browser when double clicked.
How do I get it to display correctly in a received email message??
Frodocyber
Form below as planned for later inclusion in a web page.
HTML Code:
<html>
<head>
<title> Add a new member - Administrators only</title>
<script type="text/javascript">
function setfocus() {
document.feedback.fname.focus();
}
</script>
</head>
<BODY onLoad="setfocus()" BGCOLOR="#aaccff">
<form name="feedback" method="post" action="mailto:xxxxx@yyyyy.net">
<fieldset>
<legend><b>1: Personal Information</b></legend>
First Name: <input type="text" name="fname">
Last Name: <input type="text" name="lname">
RBS date: <input type="text" name="rbs_date"><br>
Username : <input type="text" name="username1"size="20">
PassWord : <input type="text" name="password1">
Co. Title : <input type="text" name="title">
</fieldset> <br>
<fieldset>
<legend><b>2: Business Contact Information</b></legend>
Company: <input type="text" maxlength="30" name="co_name"size="30">
Address: <input type="text" name="address">
City: <input type="text" name="city"><br>
State : <input type="text" maxlength="2" name="state"size="2">
Country : <input type="text" maxlength="2" name="country"size="2">
Zip Code : <input type="text" name="zip"size="9">
Fax : <input type="text" name="fax"size="14">
Office Phone: <input type="text" name="o_phone1"size="14"><br>
Mobile Phone: <input type="text" name="m_phone2" size="14">
Company Logo: <input type="text" name="co_nameorlogo">
Company Text: <input type="text" name="common_text"><br>
E-mail1: <input type="text" name="email1"size="25">
E-mail2: <input type="text" name="email2"size="25"><br>
Web: <input type="text" name="web1" size="40">
</fieldset> <br>
<fieldset>
<legend><b>3: Business Skills Information</b></legend>
Skill 1 Text: <input type="text" maxlength="35" name="skill1_text" size="35">
Skill 4 Text: <input type="text" maxlength="35" name="skill2_text" size="35"><br>
Skill 2 Text: <input type="text" maxlength="35" name="skill2_text" size="35">
Skill 5 Text: <input type="text" maxlength="35" name="skill2_text" size="35"><br>
Skill 3 Text: <input type="text" maxlength="35" name="skill2_text" size="35">
</fieldset> <br>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Submit2" value="Reset">
<fieldset>
<legend><b>4: Bio Information</b></legend>
<textarea rows="25" cols="80">
Enter your Bio information here. Limited to 2000 characters or 300 words whichever is less.
</textarea><br>
</fieldset>
</form>
</body>
</html>
|