RitchieGunz Posted May 2, 2007 Share Posted May 2, 2007 I keep getting this error and I've tried both making a custom header and changing the php.ini file Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in C:\xampplite\htdocs\xampp\flexcusten\flexcusten\forgetpass.php on line 24 <?php require("./CustomSql.inc.php"); $db = new CustomSQL($DBName); $showtable = true; $errortag = false; if (!empty($sendpass)) { if (empty($email)){ $errortag = true; $errormsg = $error_emailempty; } $password = $db->emailcheck($email); if ($password=='0') { $errortag = true; $errormsg = $error_notamember; } if (!$errortag){ $headers = 'From: ritchiegunz@hotmail.com' . "\r\n" . $message = "Hi Fellow Member"; $message .= "Your password is \n"; $message .= $password; mail("$headers","$email","$front_password","$message"); $showtable = false; } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/49717-solved-forget-password-script/ Share on other sites More sharing options...
genericnumber1 Posted May 2, 2007 Share Posted May 2, 2007 you're passing the params in the wrong order http://www.php.net/manual/en/function.mail.php Quote Link to comment https://forums.phpfreaks.com/topic/49717-solved-forget-password-script/#findComment-243799 Share on other sites More sharing options...
RitchieGunz Posted May 2, 2007 Author Share Posted May 2, 2007 Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/49717-solved-forget-password-script/#findComment-243812 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.