I'm trying to send an email to activate new users account. Here is the code:
//Email
$to = $Email;
$subject = "Activation";
$signature = "Test";
$server = "smtp.gmail.com";
ini_set('SMTP', $server);
$body = "<a href='http://localhost/etc>Click here to activate</a>";
mail($to, $subject, $signature, $body);
The problem is that the actual mail is showing <a href='http://localhost/etc>Click here to activate</a> when it should only show "Clik here to activate". Any feedback on how to fix that?