Thank you! Solved. I did need one extra thing, since I'm using a particular mail form. Code below for anyone that may want to use it.
<?php
if(!isset($send)) { ?>
<!-- BODY CONTENT START -->
<!-- Form Code -->
<table width="50%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<form name="form1" method="post" action="<?$PHP_SELF?>" onSubmit="return validate(document.form1);">
<INPUT TYPE=hidden NAME=send VALUE=yes>
<table width="500" border="0" cellspacing="0" cellpadding="0" align="center">
<font size="2" face="Arial, Helvetica, sans-serif"><font size="-1">
<select name="service_desired[]" size="10" multiple>
<?php
$services = array ("a"=>"Oil Furnace", "b"=>"Gas Furnace", "c"=>"Air Conditioning", "d"=>"Heat Pump",
"e"=>"Oil Boiler", "f"=>"Gas Boiler", "g"=>"Humidifier", "h"=>"Electric Air Cleaner",
"i"=>"Ultraviolet Air Purifier", "j"=>"Duct Cleaning", "k"=>"Water Heater",
"l"=>"Whole House Zoning", "m"=>"Energy Recovery Ventilator", "n"=>"Precision Tune-up",
"o"=>"Emergency Repair", "p"=>"Service Agreement"
);
asort ($services);
while (list ($key, $val) = each ($services)) {
echo "<option value=\"$val\">$val\n</option>";
}
?>
</select>
</td>
</tr>
</table>
</form>
<?
} else {
$no = count($service_desired);
$sep = ", ";
for($i=0;$i<$no;$i++){
$services_body.=$service_desired[$i] . $sep;
}
$date= date("M-D-Y");
# Email Variables
$to="email@anyone.com";
$from="$name <$email>";
$subject="Subject here";
$body="This person has requested an appointment:
Name: $name
Address: $address
City: $city
State: $state
Zip: $zip
Phone: $phone
Service Desired: $services_body
Day Desired: $appt_day
Time Desired: $appt_time
Best time to call: $timetocall
Comments: $comments
";
# Send the mail
mail($to,$subject,$body,"From: $from");
?>
<!-- Mail Sent Message -->
<P>
<div align="center"><font face="veranda" size="4" color="#000000"> Your request for an appointment has been sent.</font> </div>
<p align="center"> <font face="veranda" color="#ffffff" size=3><a href="index.php">Return
to main page</a></font>
<? } ?>
<!-- BODY CONENT END -->