cannot use the mail function in php, will be creating a mailto link in html instead. (the kind you click on and it pops up a window)
I have the body of the message saved under a variable $body and the email address saved under $email
<?php
echo"
<a href="mailto: $to ?body= $body ">
";
?>
I know that code would not work, how do I put the email address and the body variables in there? thanks
echo "<a href='mailto:" . $to . "?body=" . $body . "'>";