Im using the following code:
$msg .= "Telephone: \"$telephone\"\n";
mail($to,$subject,$msg,$headers);
Which works and i get the e-mail. However in the email the formatting is as such:
Telephone: "435345"
How can i get it to display in the email as:
Telephone: 435235
i.e. without the " around the variable?
Many Thanks
NuTz