$email = $_REQUEST['email'];
$mail->IsSMTP();
$mail->Host = "smtp.***.com.br";
$mail->SMTPAuth = true;
$mail->Username = 'contato@***.com.br';
$mail->Password = '******';
$mail->From = $email; <<<<<<<<<<<<<<ERRO>>>>>>>>>>>>>>>>>>
$mail->Sender = "[email protected]";
$mail->FromName = "Contato - www.contato.com.br";
When I use I put the direct value in ($ mail- > From)="[email protected]". It works normally, when I put a variable, of the error, can the handcuff help me?