Jump to content

[SOLVED] Forget password script


RitchieGunz

Recommended Posts

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: [email protected]' . "\r\n" .
$message = "Hi Fellow Member";
$message .= "Your password is \n";
$message .= $password;
mail("$headers","$email","$front_password","$message");
$showtable = false;
}

}

?>


Link to comment
https://forums.phpfreaks.com/topic/49717-solved-forget-password-script/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.