email form results

J

Jesse Hand

I have created a email form, but when I test it live it does not send the
email address or the name in the email. yes, i do enter the information into
the respective fields. the html for the page is below:

<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<title>email form</title>
</head>

<body>

<blockquote>
<form method="POST" action="_vti_bin/shtml.exe/emailform.htm"
webbot-action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" s-email-format="TEXT/PRE"
s-email-address="(e-mail address removed)" b-email-label-fields="TRUE"
b-email-subject-from-field="FALSE" s-email-subject="homepage visitor
comment" s-date-format="%d %b %Y" s-time-format="%H:%M:%S"
s-builtin-fields="Date Time" s-form-fields="Subject Comments Name Email Tel
FAX " startspan --><input TYPE="hidden" NAME="VTI-GROUP"
VALUE="0"><!--webbot bot="SaveResults" endspan i-checksum="43374" -->
<dl>
<dd>&nbsp;Subject:
<input type="text" size="26" maxlength="256" name="SubjectOther"></dd>
</dl>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Comments:</p>
<dl>
<dd><textarea name="Comments" rows="11" cols="75"></textarea></dd>
</dl>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Your contact
info:</p>
<dl>
<dd>
<table>
<tr>
<td>Name</td>
<td><input type="text" size="35" maxlength="256"
name="Username"></td>
</tr>
<tr>
<td>E-mail</td>
<td><input type="text" size="35" maxlength="256"
name="UserEmail"></td>
</tr>
</table>
</dd>
</dl>
<p><input type="submit" value="Submit Comments">
<input type="reset" value="Clear Form"></p>
</form>
</blockquote>

</body>

</html>

--

-Jesse

http://www.pixelpages.net/jesse

Disclaimer: Spelling & grammar errors are made on purpose for those who are
fulfilled by correcting others.
 
S

Stefan B Rusynko

Your field names in your form are incorrect
You have fields of:
SubjectOther Comments Username UserEmail
And your form properties are
s-form-fields="Subject Comments Name Email Tel FAX

Use Form Properties Saved Fields to delete all the bad fields, and then add all correct fields
--




| I have created a email form, but when I test it live it does not send the
| email address or the name in the email. yes, i do enter the information into
| the respective fields. the html for the page is below:
|
| <html>
|
| <head>
| <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
| <meta name="ProgId" content="FrontPage.Editor.Document">
| <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
| <meta http-equiv="Content-Language" content="en-us">
| <title>email form</title>
| </head>
|
| <body>
|
| <blockquote>
| <form method="POST" action="_vti_bin/shtml.exe/emailform.htm"
| webbot-action="--WEBBOT-SELF--">
| <!--webbot bot="SaveResults" s-email-format="TEXT/PRE"
| s-email-address="(e-mail address removed)" b-email-label-fields="TRUE"
| b-email-subject-from-field="FALSE" s-email-subject="homepage visitor
| comment" s-date-format="%d %b %Y" s-time-format="%H:%M:%S"
| s-builtin-fields="Date Time" s-form-fields="Subject Comments Name Email Tel
| FAX " startspan --><input TYPE="hidden" NAME="VTI-GROUP"
| VALUE="0"><!--webbot bot="SaveResults" endspan i-checksum="43374" -->
| <dl>
| <dd>&nbsp;Subject:
| <input type="text" size="26" maxlength="256" name="SubjectOther"></dd>
| </dl>
| <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
| Comments:</p>
| <dl>
| <dd><textarea name="Comments" rows="11" cols="75"></textarea></dd>
| </dl>
| <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Your contact
| info:</p>
| <dl>
| <dd>
| <table>
| <tr>
| <td>Name</td>
| <td><input type="text" size="35" maxlength="256"
| name="Username"></td>
| </tr>
| <tr>
| <td>E-mail</td>
| <td><input type="text" size="35" maxlength="256"
| name="UserEmail"></td>
| </tr>
| </table>
| </dd>
| </dl>
| <p><input type="submit" value="Submit Comments">
| <input type="reset" value="Clear Form"></p>
| </form>
| </blockquote>
|
| </body>
|
| </html>
|
| --
|
| -Jesse
|
| http://www.pixelpages.net/jesse
|
| Disclaimer: Spelling & grammar errors are made on purpose for those who are
| fulfilled by correcting others.
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top