Thank ya fellas,
I fixed it with some slight changes
Here is the code:
Code:
$formcontent=" From: \n $title $name \n Email: $email \n Phone: $phone \n Message: $message";
$headers = 'From: '.$email."\r\n".
'Reply-To: '.$email."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($recipient, $subject, $formcontent, $headers);
{
header('location:thanks.html');
}
?>
Cheers!