]]jkjjgdjffksdkdxdsghfghdfghfgdfsdsdfsdfsfdsbcxvxcbccwewqeqwewqskfgj
במ12[cxvbcxvbxcvbcxvcxvbcvxcvbsdfsdfsdfsdfsdfsdfxcvbxcvxbbxqwqewqewv;'
/
home
/
u506006416
/
domains
/
crystalmiracle.co.in
/
public_html
/
Upload FileeE
HOME
<?php include_once('php_mail/class.phpmailer.php'); $mail = new PHPMailer; $encoded_user_id = base64_encode($email); $reset_link_k = BASE_URL."reset_password.php?uid=".$encoded_user_id; $reset_link = "<a href='$reset_link_k'> $reset_link_k <a/>"; $message ='<h2>Hi '.$full_name.' </h2>'; $message .='<h3>Click on the link to reset your password <br/><br/>'.$reset_link.'</h3>'; $mail->Host = "smtp.hostinger.com"; $mail->Port = '587'; $mail->SMTPAuth = true; $mail->Username = 'info@a4paper.in'; $mail->Password = 'Stereo@1879'; $mail->SMTPSecure = 'tls'; $mail->From = "info@a4paper.in"; $mail->FromName = "a4paper"; $mail->Mailer = "smtp"; // don't change the quotes! $mail->AddAddress($email); $mail->WordWrap = 50; //Sets word wrapping on the body of the message to a given number of characters $mail->IsHTML(true); //Sets message type to HTML //$mail->AddAttachment($path); //Adds an attachment from a path on the filesystem $mail->Subject = "Forgot Password"; //Sets the Subject of the message $mail->Body = $message; //An HTML or plain text message body if($mail->Send()) //Send an Email. Return true on success or false on error { echo "<script>alert('Forgot password mail has been sent successfully. Please check Your Mail');window.location.href='login.php?show_message=1'</script>"; } else { // echo "<script>alert('SMTP mail error');window.location.href='login.php?show_message=1'</script>"; } ?>