REALLY Need PHP Email Form Help

I am having trouble getting my PHP email form to work, I keep returning errors. Here is my PHP code:

<?php $recipient = "[email protected]"; $subject = "Subscribe"; $sender = $recipient; $body .= "Email: " . $_REQUEST['Email'] . " \n"; mail($recipient, $subject, $body, "From: $sender") or die("Mail could not be sent."); ?>

Here is my HTML code too:

Not sure what the problem is?

What errors?

Sponsor our Newsletter | Privacy Policy | Terms of Service