Mailing drop-down multiple selections

Hi, the solution to my problem is probably quite straight forward, but I can’t seem to figure out how to do this…

A PHP contact form has been created. The drop down menu has been set to allow multiple selections, but the form only emails one selection, even if you select multiple.

Here’s the HTML:

<form name=“contactform” method=“post” action=“contact.php”>
<table width=“450px”>
</tr>
<tr>
<td valign=“top”>
<label for=“ContactName”>Contact Name *</label>
</td>
<td valign=“top”>
<input type=“text” name=“ContactName” maxlength=“50” size=“30”>
</td>
</tr>
<tr>
<td valign=“top”">
<label for=“BusinessName”>Business Name *</label> </td>
<td valign=“top”>
<input type=“text” name=“BusinessName” maxlength=“50” size=“30”>
</td>
</tr>
<tr>
<td valign=“top”>
<label for=“Email”>Email Address *</label>
</td>
<td valign=“top”>
<input type=“text” name=“Email” maxlength=“80” size=“30”>
</td>
</tr>
<tr>
<td valign=“top”>
<p>
<label for=“Inquiry”>Inquiry * <br>Please select from the list.</label>
</p></td>
<td valign=“top[COLOR=red]”><select name=“Inquiry” size=“5” multiple=“multiple”>[/COLOR]
[COLOR=red]<option>Option1</option>[/COLOR]
[COLOR=red]<option>Option2</option>[/COLOR]
[COLOR=red]<option>Option3</option>[/COLOR]
[COLOR=red]<option>Option4</option>[/COLOR]
[COLOR=red]<option>Option5</option>[/COLOR]
[COLOR=red]</select>[/COLOR]</td>
</tr>
<tr>
<td valign=“top”>
<label for=“Tel”>Telephone Number</label>
</td>
<td valign=“top”>
<input type=“text” name=“Tel” maxlength=“30” size=“30”>
</td>
</tr>
<tr>
<td valign=“top”>
<label for=“Website”>Website</label>
</td>
<td valign=“top”>
<input type=“text” name=“Website” maxlength=“30” size=“30”>
</td>
</tr>
<tr>
<td valign=“top”>
<label for=“Message”>Message *</label>
</td>
<td valign=“top”><textarea name=“Message” cols=“25” rows=“5”></textarea>
</td>
</tr>
<tr>
<td style=“text-align:left”> </td>
<td style=“text-align:left”><input type=“submit” value=“Submit” /></td>
</tr>
</table>
</form>

Here’s the PHP:

<?php

$EmailTo = “myemail@myemail.com”;
$Subject = “Inquiry”;
$ContactName = Trim(stripslashes($_POST[‘ContactName’]));
$BusinessName = Trim(stripslashes($_POST[‘BusinessName’]));
$Email = Trim(stripslashes($_POST[‘Email’]));
$Inquiry = Trim(stripslashes($_POST[‘Inquiry’]));
$Tel = Trim(stripslashes($_POST[‘Tel’]));
$Website = Trim(stripslashes($_POST[‘Website’]));
$Message = Trim(stripslashes($_POST[‘Message’]));

$validationOK=true;
if (Trim($ContactName)=="") $validationOK=false;
if (Trim($BusinessName)=="") $validationOK=false;
if (Trim($Email)=="") $validationOK=false;
if (Trim($Inquiry)=="") $validationOK=false;
if (Trim($Message)=="") $validationOK=false;
if (!$validationOK) {
print “<meta http-equiv=“refresh” content=“0;URL=error.html”>”;
exit;
}

$Body = “”;
$Body .= "ContactName: ";
$Body .= $ContactName;
$Body .= "
";
$Body .= "BusinessName: ";
$Body .= $BusinessName;
$Body .= "
";
$Body .= "Email: ";
$Body .= $Email;
$Body .= "
";
$Body .= "Inquiry: ";
$Body .= $Inquiry;
$Body .= "
";
$Body .= "Tel: ";
$Body .= $Tel;
$Body .= "
";
$Body .= "Website: ";
$Body .= $Website;
$Body .= "
";
$Body .= "Message: ";
$Body .= $Message;
$Body .= "
";

$success = mail($EmailTo, $Subject, $Body, “From: <$BusinessName>”);

if ($success){
print “<meta http-equiv=“refresh” content=“0;URL=success.html”>”;
}
else{
print “<meta http-equiv=“refresh” content=“0;URL=error.html”>”;
}
?>

Any help would be appreciated.

Also, is it ‘normal’ for the email to take a quite a while to come through once the form has been submitted? Sometimes it takes a couple of hours.

Thanks in advance.