Paul:
I tried your suggestion; however, I think I am putting it in the wrong spot.
>$variableName = str_replace("\'","'",$variableName);
echo $variableName;
$variableName= str_replace("'","",$variableName);
$main_type = 'contact';
$message = (string) '';
$message.= "
Name: " . $_POST['name'] . "
Email: " . $_POST['email'] . "
Phone: " . $_POST['AreaCode'] . "." . $_POST['Prefix'] . "." . $_POST['Numero'] . "
Type: " . $_POST['inquiry_type'] . "
Response method: " . $_POST['respond'] . "
Comments: " . $_POST['comments'] . "
I just dumped it there thinking that was the most likely place it should go... but it is not working. Can you please say where to place it? Many thanks!!