can someone help me to solve my form mail using the form from www.formmail.com
here's my html form:
--------------------------------------------------------------------------
<form method="POST" action="http://64.68.151.169/www/cgi-bin/cgiwrap/mnmaster/FormMail.cgi">
<p>Your Name: <input type=text name="realname"></p>
<p>Your Email:<input type=text name="email"></p>
<p>Subject/Comments: <input type=text name="subject"></p>
<p> </p>
<input type=hidden name="recipient" value="someone@msn.com">
<input type=hidden name="title" value="Feedback Form Results">
<input type=hidden name="return_link_url" value="http://www.menzies-med.com/index.htm">
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
--------------------------------------------------------------------------
in my real form, "recipient" does has a real email address.
here's my html link: http://64.68.151.169/sample.htm
the error msg is : page not found
i did some modification per instruction and ftp the FormMail.cgi to the cgi bin. the only thing i change in the FormMail.cgi are as follow:
- @referers = ('scriptarchive.com','64.68.151.169');
- @recipients= ('^real-emailadress@msn.com');
please help

|