I have a form which get email from user and then send an email to that and it is running fine on my local host but when I transferred my code to my server (Biz.nf) my PHP code for sending email does not work anymore. Any suggestion how should I get it running again?
$to = $_POST['EM']; // this is your Email address
$subject = "Recipt ";
$message = "The following is your receipt " .$FName. "\n This email was sent too prove that this functionality is working";
mail($to,$subject,$message);