3
I create a password reset link:
$mail_message .= "<a href=$url_sender/redefinir-senha?email=$email_sender&identifier=$identifier_sender&code=$confirmation_code>
Clique aqui para redefinir sua senha.
</a>";
But by clicking on the link received in the email, the arroba( @ ) disappears. I noticed that this error happens only in Gmail.
Use the function urlencode in all variables.
– Jader A. Wagner