Form not working on my website
For http://crowntastic.com (user: xxxxx pass: xxxxxx) I am using a free HTML5 template called "Oxygen". My problem is that the sendmail.php file does not send out email from the contact form. Here is the sendmail.php code; btw the email address it sends to has been tested so that's not the issue; any help is very much appreciated!
";
$headers[] = "Reply-To: <{$from}>";
$headers[] = "Subject: {$subject}";
$headers[] = "X-Mailer: PHP/".phpversion();
mail($to, $subject, $message, $headers);
die;