0
I am trying to send an email confirmation of registration to a client using the Phpmailer. It turns out that the message is printed as below:
<strong>Você foi cadastrado no sistema de licitação da Terra Palmas.</strong>
Clique no link para confirmar seu e-mail:
<a href='/cliente/confirmar/'> /cliente/confirmar/</a>
Then the code used:
$mailTo->Body = "
<strong>Você foi cadastrado no sistema de licitação da Terra Palmas.</strong>
Clique no link para confirmar seu e-mail:
<a href='{$link}'> /cliente/confirmar/</a>
";
Who can tell me what I’m doing wrong? I’ve done a lot of research and I can’t solve it.
Thank you Celsom
– Emillp