I made my web site by using NVU and used Form Mail of "TheSite Wizard.com" for my Contact Us page.

I received an email recently and also today from a person in Turkey written by Turkish Key Board. A lot of the letters were just numbers or signs.
I have copied and pasted the Form Mail script below.
Could you be able to tell me if something wrong with it please?

PS : I have asked above question in NVU forum. I was told ;
"The reply probably used a different code page. It probably has nothing to do with your script.,"
When I wrote back and asked them to be a little more informative, I was told to "Search for "code page" in Wikipedia".


I would really appreciate your help please.

<html>
<head>
<title>Contact Form</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="/cgi-bin/formmail/formmail.pl" method="POST">
<div align="left">
<p>
<input type="hidden" name="recipient" value="[email protected]">
<input type="hidden" name="subject" value="Web FormMail">
</p>
<p><strong> Contact form</strong><br>
<br>
your name:<br>
<input name="name" size="30" maxlength="30">
<br>
e-mail address: <br>
<input name="email" size="30" maxlength="30">
<br>
message:<br>
<textarea wrap="physical" name="comments" cols="30" rows="8"></textarea>
<br>
<br>
<input type="submit" value="send email" name="submit">
<input type="reset" value="clear" name="reset">
</p>
</div>
</form>
</body>
</html>