" ;
// create email header
$headers = 'From: webmaster@montclairseahawks.org' . "\r\n" .
'Bcc: poetsAndChefs@verizon.net' . "\r\n" .
'Reply-To: ' . $_REQUEST['email']. "\r\n" .
'X-Mailer: PHP/' ;
// THE ini_set is REQUIRED by IXWEBHOSTING
ini_set('sendmail_from', 'webmaster@montclairseahawks.org');
$status = mail($to, $subject, $message, $headers) ;
echo "Thank you for using the Montclair Seahawks mail form";
}
}
else
{//if "email" is not filled out, display the form
echo "";
}
?>