Codeigniter:发送过期时间的电子邮件

时间:2015-06-09 10:31:14

标签: php email forgot-password

在我的应用程序中,我有一个忘记密码的功能,因此如果用户丢失了密码,他们可以点击菜单,他们会收到一封带有URL的电子邮件,以重置密码。

我想对此功能应用时间限制。因此,如果超过一定时间,用户将无法使用电子邮件中发送的相同网址重置密码。

  public function password_post()
  {

    // $email  = trim($this->input->get_post('email'));
    $data = array (
      'username' => $this->input->get_post('username'),
      'idcardno'  => $this->input->get_post('idcardno')
    );

    $result = $this->model->user_exist($data);
    if ($result) {
      $idcardno = $data['idcardno'];
      $data['email'] = $this->db->get_where('mytable', array('idcardno' => $idcardno))->row()->email;
      $this->send_forgot_password($data);
      $this->response(array('success' => 'New password has sent to your email'), 200); // 200 being the HTTP response code
    } else {
      $this->response(array('error' => 'Your account doesnt exist'), 404);
    }
  }

这是发送电子邮件的方法。

 private function send_forgot_password($data) {

    require(APPPATH.'controllers/mail-master/PHPMailerAutoload.php');

    // $email_encode=urlencode($data['email']);
    $mail = new PHPMailer;
    // $mail->SMTPDebug = 3;

    $mail->isSMTP();
    $mail->Host       = 'mail-id.myweb.com';
    $mail->SMTPAuth   = true;
    $mail->Username   = 'testing-alert@myweb.com';
    $mail->Password   = 'mobile14';
    $mail->SMTPSecure = 'tls';
    $mail->Port       = 25;

    $emailcode = md5($this->config->item('salt') . $username);

    // Email body
    $mail->From     = 'testing-alert@myweb.com';
    $mail->FromName = 'BNI Life';
    $mail->addAddress($data['email']);
    $mail->isHTML(true);

    $mail->Subject = 'Forgot Password';
    $mail->Body    =
    ' ';
    $mail->send();
  }

1 个答案:

答案 0 :(得分:1)

在包含用户的表格中,您需要存储发送重置密码电子邮件的时间戳。

然后,当您验证用户对提供的重置链接的请求时,必须将数据库中存储的时间戳与当前时间戳进行比较。

有些事情:

$diff = time() - $mail_sent_timestamp;
//If $diff > 60*60*24*7,
//Diff greater then 7 days; Don't send the new PW to user.
//Else
//Send new password
相关问题