CONTACT US
You can get in touch with us at any time by using the form below. We aim to respond within 24 hours.
if($_POST['submit'])
{
$theirname = $_POST['theirname'];
$theirmail = $_POST['theirmail'];
$theirmessage = $_POST['theirmessage'];
stripslashes($theirmessage);
$allowed = eregi("^([0-9a-z]+[-._+&])*[0-9a-z]+@([-0-9a-z]+[.])+[a-z]{2,6}$",$theirmail);
$spam = eregi("(\r|\n)(to:|from:|cc:|bcc:)",$theirmessage);
if(!$allowed)
{
echo "Please go back and enter a properly formatted e-mail address or we will not be able to reply!";
}
else
{
if(!$spam)
{
mail("paul.greenhalgh@gmail.com", "SmileyZone Contact Form", $theirmessage, "FROM: $theirmail");
echo "Your message has been sent!
";
}
else
{
echo "Your message has been sent!
";
}
}
}
else
{
?>
To get in touch with the Icon Burst team, just fill in the short form below. We will be in touch within 24 hours!
}
?>