trying to make a href link that will open a premade email with subject and body prefilled. the parameters are taken using php
the code below works in taking user email and writing the subject, but the body is also written in the subject line instead of the email body
how would i separate them?
<a href="mailto:<?php echo $v['email']; ?> ?subject=<?php echo "subject
here"; ?> ?body=<?php echo "your email is approved"; ?>"><i class="icon-
envelope"></i></a>