Hi
I am needing to have a html mailto hyperlink to be made up of PHP variables, here is what I have so far but all it does it puts in the plain text into the email message
[php]header(‘Location: mailto:<?php echo $email?>?subject=<?php echo $subject?>’);
[/php]
What can I do to achieve this?
Thanks in advance