We have recieved your request for a password reset. The link to reset your password is below.';
$msg .= "
Here is the password reset link:
";
$msg .= ''.$url.'
';
// Load Composer's autoloader
require '../vendor/autoload.php';
// Instantiation and passing `true` enables exceptions
$account = 'rushilwiz@outlook.com';
$password = '!Riya2011';
$from = 'rushilwiz@outlook.com';
$from_name = 'NewBooksNetwork';
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->CharSet = 'UTF-8';
$mail->Host = "smtp.live.com";
$mail->SMTPAuth= true;
$mail->Port = 587;
$mail->Username= $account;
$mail->Password= $password;
$mail->SMTPSecure = 'tls';
$mail->From = $from;
$mail->FromName= $from_name;
$mail->isHTML(true);
$mail->Subject = $subject;
$mail->Body = $msg;
$mail->addAddress($userEmail);
if(!$mail->send()){
header('Location: ../reset-password.php?error=emailerror');
} else {
header('Location: ../reset-password.php?reset=success');
}
} else {
header('Location: ../index.php');
}