PHP Email Form help

Dear Sir,
I am designing a email form using PHP script from Kirupa.com

After pressing the submit button.I am getting the message"Data has been submitted to [email protected]!"

Everything is perfect.

But when i check my Inbox,i am not getting the details to my Inbox.

Kindly,please anybody help me.

Following is the html code:

<form method=“POST” action=“mailer.php”>
<p> </p>
<p><span class=“style1”>Name:</span>
<input type=“text” name=“name” size=“19” />
<br />
<br />
<span class=“style1”>Company Name :</span>
<input type=“text” name=“name” size=“19” />
<br />
<br />
<span class=“style1”>Telephone :</span>
<input type=“text” name=“phone” size=“19” />
<br />
<br />
<span class=“style1”>E-Mail:</span>
<input type=“text” name=“email” size=“19” />
<br />
<br />

  &lt;input type="checkbox" name="check[]" value="blue_color" /&gt; 
  &lt;span class="style1"&gt;Contact me for a free Consultation&lt;/span&gt;&lt;br /&gt;

<span class=“style1”>Send me a Organizer :</span>
<input type=“checkbox” name=“check[]” value=“green_color” />
<span class=“style1”> Electronic</span><br />

  &lt;input type="checkbox" name="check[]" value="orange_color" /&gt; 
  &lt;span class="style1"&gt;Paper&lt;/span&gt;&lt;br /&gt;
  
  &lt;br /&gt;
  &lt;br /&gt;
  &lt;span class="style1"&gt;Select Items apply to you : &lt;/span&gt;
   &lt;select size="1" name="drop_down"&gt;
         &lt;option&gt;Select One&lt;/option&gt;
         &lt;option&gt;I recevied Business Income&lt;/option&gt;
         &lt;option&gt;I recevied rental/ royalty Income&lt;/option&gt;
         &lt;option&gt;I purchased/ sold my home,stocks&lt;/option&gt;
         &lt;option&gt;I have a retirement plan&lt;/option&gt;
         &lt;option&gt;I had employee business expenses&lt;/option&gt;
         &lt;option&gt;I received farm income&lt;/option&gt;
         &lt;option&gt;I received a Schedule K1&lt;/option&gt;
         &lt;option&gt;I incurred deductible Vechicle expenses&lt;/option&gt;
         &lt;option&gt;I received other income&lt;/option&gt;
         &lt;option&gt;I paid child dependant care expenses&lt;/option&gt;
         &lt;option&gt;I incurred moving expenses&lt;/option&gt;
         &lt;option&gt;I used my home for business&lt;/option&gt;
         &lt;option&gt;I made non-cash contributions&lt;/option&gt;
         &lt;option&gt;I paid adoption expenses &lt;/option&gt;
         &lt;option&gt;I paid education expenses&lt;/option&gt;
         &lt;option&gt;I paid household employment expenses&lt;/option&gt;
         &lt;/select&gt;
      &lt;br /&gt;
      &lt;br /&gt;
      &lt;span class="style1"&gt;Message:&lt;/span&gt;&lt;br /&gt;
  &lt;textarea rows="6" name="message" cols="30"&gt;&lt;/textarea&gt;
  &lt;br /&gt;
  
  &lt;br /&gt;
  &lt;input type="submit" value="Submit" name="submit" /&gt;
    &lt;/p&gt;

</form>

PHP mailer:
<?php
if(isset($_POST[‘submit’])) {

$to = "[email protected]"; 
$subject = "From Bhupinder Sood CPA Tax Organizer Query";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];
$Telephone = $_POST['phone'];
$dropdown = $_POST['drop_down'];

foreach($_POST['check'] as $value) {
    $check_msg .= "Checked: $value

";
}

$body = "From: $name_field

E-Mail: $email_field
$check_msg Option: $option
Drop-Down: $dropdown
Message:
$message
";

echo "Data has been submitted to $to!";
mail($to, $subject, $body);

} else {
echo “blarg!”;
}
?>

  I am newbie.So,kindly please anybody guide me.

Thanks
Suvetha.