I have tried to send an email from PHP with the next body:
$message .= 'This is a simple message';
$message .= "\n";
$message .= 'http://www.yahoo.com';
$message .= "\n";
$message .= "<a href='https://www.google.com'>Google</a>";
$message .= "\n";
As a result I got the next output:
This is a simple message //This line is ok
http://www.yahoo.com //This line is ok
<a href='https://www.google.com'>Google</a> //It should appear the word Google clickable but it does not
Instead of having the word Google with the link clickable to the Google site I get the html code, how could I fix this? Thanks