Php Email Form not working

I’m trying to get a Flash email form to work with PHP. It’s similar to the Kirupa one. I can’t figure out why it won’t send emails.

The code on my send button is

on (release) {il
	form.loadVariables("email.php", "POST");
}

The code on my form movie clip that sends the data is

onClipEvent(data){
	_root.content_mc.nextFrame();
}

My PHP code is:

<?php

//POST VARIABLES *************************************
$name = $_POST['name'];
$email = $_POST['email'];
$company = $_POST['company'];
$address = $_POST['address'];
$phone = $_POST['phone'];
$fouroone = $_POST['fouroone'];


//EMAIL VARIABLES ************************************
$sendTo = "jonimmel@gmail.com";
$subject = "test.com site reply";
$headers = "This form was submitted on www.test.com";
$message = "$name
$company
$address
$email
$phone
$fouroone";


//send the email **************************************
mail("$sendTo", "$subject", "$message", "$headers");


?>

Thanks in advance to anyone who can help.