bitejones Posted February 23, 2009 Share Posted February 23, 2009 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, then all of a sudden the emails are no longer been delivered, i realise that the code is been executed because i am not getting a error on the code, just that when i check my inbox there is nothing there..... $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="[email protected]"; $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 Link to comment https://forums.phpfreaks.com/topic/146436-php-mail-help/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.