Неизвестный отправитель PHP (код внутри)

Я создал файл PHP для работы с моей формой на моем мобильном сайте jQuery. Форма отлично работает и отправляет электронную почту, а также ошибки и все. Но я продолжаю получать письмо от (неизвестного отправителя). Тема и адрес электронной почты. (Электронная почта поступает из формы для размещения адреса электронной почты хоста). Спасибо за любую помощь, которая может быть предоставлена.

<?php if(isset($_POST['email'])){ // Here is the email to information $email_to = "hostemail@email.com"; $email_subject = "Customer Service Form"; $email_from = "Company"; //error code function died($error){ echo "We are sorry, but there were errors found with the form you submitted."; echo "These errors appear bellow.<br/><br/>"; echo $error. "<br/><br/>"; echo "Please go back and fix these errors.<br/>"; die(); } //validation if(!isset($_POST['name']) || !isset($_POST['email']) || !isset($_POST['message'])) { died('We are sorry but there appears to be a problem with the form you submitted.'); } $name = $_POST['name']; $email = $_POST['email']; $message = $_POST['message']; $error_message = ""; //$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z] {2,4}$/'; //(!preg_match($email_exp, $email)) { //$error_message .='The Email Address you entered does not appear to be valid.<br/>'; // } $string_exp = "/^[A-Za-z.'-]+$/"; if(!preg_match($string_exp, $name)){ $error_message .= 'The name you entered does not seem to be valid.<br/>'; } if(strlen($message) < 2) { $error_message .= 'The comments you entered do not appear to be valid.<br/>'; } if(strlen($error_message) > 0 ) { died($error_message); } $email_message = "Form details below. \n\n"; function clean_string($string) { $bad = array("content-type", "bcc:", "to:", "cc:", "href"); return str_replace($bad, "", $string); } $email_message .= "Name:" . clean_string ($name) . "\n"; $email_message .= "E-Mail:" . clean_string ($email) . "\n"; $email_message .= "Message:" . clean_string ($message) . "\n"; //create email headers $headers = 'From:' .$email_From . "\r\n" . 'Reply-To:' . $email. "\r\n" . 'X-MAILER: PHP/' . phpversion(); @mail($email_to, $email_subject, $email_message, $headers); ?> <!-- Success Message Goes Here --> Thank you for contacting us. We will be in touch with you shortly. <br/> Please Click <a href="contact.html"> here </a> to go back to the contact page. <?php } ?> 

Формат заголовка From :

 Display Name <email address> 

Например:

 Company <foo@company.com> 

Прямо сейчас вы просто используете «Компанию», которая не является ни действительным адресом электронной почты сама по себе, ни адресом электронной почты в конце.