Email Form required

<form name="form">
<input type="text" name="email">
<input type="button" value="Submit" onclick="send()">
<script language="Javascript">
function send(){
if(document.form.email.value==""){
alert("Please enter your email");
} else{
document.form.submit();
}
}
</script>
</form>
 
Then that is a problem with your mail server. Have you got the MX records set up for pipson.net? have you got the correct path to sendmail?
 
Back
Top Bottom