I would recommend to do 2 things first:
1. Enable error log:
error_reporting(-1);
ini_set('display_errors', 'On');
set_error_handler("var_dump");
2. And change the line where you are sending email
$status = mail($email,$subject,$message,$headers);
if($status)
{
echo 'Your mail has been sent!
';
} else {
echo 'Something went wrong, Please try again!
';
}
Then see if you got any error if no error then Follow this answer: PHP mail form doesn't complete sending e-mail