Simple form problems sending as well

I have used that simple form for a while now and it worked beautifully. Recently I noticed it stopped working and i’m not sure why. I’ve been struggling to get it to work again for days now with no luck. My host is goDaddy and Mister.net. I use this on the submit button in the flash file.

on (release) {

_parent.loadVariables("http://www.mywebsite.com/email.php","POST");

}
onClipEvent(data){
_parent.gotoAndStop(2);
}
on (rollOver) {
this.gotoAndPlay(“s1”);
}

as for the php file i use the following

<?php
$sendTo = "myemail@email.com";
$subject = “MyWebsite.com has sent you something”;

$headers .= "Reply-To: " . $_POST[“text2”] . "
";
$message .= "
<From: " . $_POST[“text2”] . ">
";
$message .= "Name: " . $_POST[“text1”] . "
";
$message .= "Phone: " . $_POST[“text3”] . "
";
$message .= "Message: " . $_POST[“text4”] . "
";
mail($sendTo, $subject, $message, $headers);
?>

I’m at a loss at what else to do. I don’t get any emails at all when the submit button is pressed in fact when i added the
onClipEvent(data){
_parent.gotoAndStop(2);
}

The movie doesn’t even move to the next frame. Any ideas what i’m doing wrong?

Jammy