-f
, and it does not work, here is what I have so far:
$dest = "[email protected]";
$nome = $_POST['nome'];
$email = $_POST['email'];
$assunto = $_POST['assunto'];
$header = "MIME-Version: 1.1 \r\n";
$header .= "Content-type: text/plain; charset=iso-8859-1 \r\n";
$header .= "From: $email \r\n";
$header .= "Return-Path: $email \r\n";
$header .= "Reply-To: $dest \r\n";
$msg = $_POST['text'];
$mail = mail($dest, $assunto, $msg, $header, -f$dest);
And I have no idea what it might be, I've tried so many things ...