I'm using PHPMailer to send emails. I'm sending prices through emails and it works fine on Gmail and Roundcube but on Hotmail my '£' sign appears as '£'.
I know this is because the charset is not set properly. I tried
$mail->Body = "
<html>
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
</head>
<body>
$content
</body>
</html>
";
but it seems that Hotmail strips the header, like most email clients.
How can I make sure my '£' sign appears correctly across different email clients?