i have been trying to use the php automatic mail function to send email to users who have forgotten their passwords....this function was working perfectly fine, i was recieving the emails perfectly, however i realise that its no longer working, and i did not touch the code, im not a expert coder so i know better not to touch it...
this is the code
$to= $search_email;
$subject="Forget Password";
$message="Hello Your Password as been recovered, Please do not reply to this mail, your password is ";
$message.=$search_password;
$from="forget_password@xoionlin.net";
$headers="From: $from";
if(
mail($to,$subject,$message,$headers)){
$sign=1;
}
as i said this was working perfectly before, all of a sudden its no longer working, HELP PLEAS