I've found instructions online how to do this, but it's not working for me... My shortened PHP message is:
$msg = '<html><body>';
$msg .= 'Dear' .$firstname. 'Best wishes';
$msg .= '</body></html>';
I'm intending to actually add some html INTO the message, but this just comes out with:
<html><body>
Dear Sam Best wishes
</body></html>
What am I missing?! Thanks.