e-mail form, need help!

liunx

Guest
i have this e-mail form but there is an error when you click the submit button, it says this:<br />
submitting this form will reveal your e-mail adress to the recipient, and will send the form without encrypting it for your privacy; <br />
<br />
is their a way i can encrypt the form ??<br />
if yes how?<br />
<br />
<br />
this is the code if u wanna know:<br />
<br />
------------------------------------------------------<br />
<form action="mailto:[email protected]" method="post" name="FeedbackForm" id="FeedbackForm"><br />
<table width="100%" border="0" cellspacing="0" cellpadding="2"><br />
<tr valign="top"> <br />
<td>Name:</td><br />
<td> <input type="text" name="Customer_Name" /> </td><br />
</tr><br />
<tr valign="top"> <br />
<td>Email:</td><br />
<td> <input type="text" name="Customer_Email" /> </td><br />
</tr><br />
<tr valign="top"> <br />
<td>Comments:</td><br />
<td> <textarea name="Comments" cols="30" rows="10"></textarea> </td><br />
</tr><br />
<tr> <br />
<td>&nbsp;</td><br />
<td> <input type="submit" name="Submit" value="Send Email" /> </td><br />
</tr><br />
</table><br />
</form><!--content-->no you can't get rid of it. the reason you have ti come up is becasue you are using the mailto: in the forms action. there is no way to change it unless you use a serverside script like Matts Script archive "formmail.pl"<!--content-->
 
Back
Top