我正在尝试忘记密码。因此,如果用户忘记了密码,他可以通过转到忘记密码页面来检索密码。虽然一切似乎都很完美,但我确实收到了“请检查您的电子邮件地址”的成功消息。并且验证也很完美。数据库表还在md5中重新生成密码,并且还生成了rs = random-string。但我没有收到电子邮件,我尝试过不同的电子邮件hotmail,gmail接收。而发送我只使用gmail但我确实尝试了2个不同的Gmail帐户。我也遇到了一个奇怪的问题,如果我使用 account1@gmail.com ,页面会永远加载但是当我使用 account2@gmail.com 时,页面会成功加载并且显示成功消息。还有一件事......电子邮件是在新用户注册时发送的,两者的代码相同(复制粘贴到不同的功能),但是当我忘记密码时它不起作用。下面是我的控制器和查看文件。
控制器:mysite
public function change_password()
{
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email|callback_email_check');
if ($this->form_validation->run() == FALSE)
{
$this->load->view('mysite/email_check');
}
else
{
$email= $this->input->post('email');
$this->load->helper('string');
$rs= random_string('alnum', 12);
$data = array(
'rs' => $rs
);
$this->db->where('email', $email);
$this->db->update('user', $data);
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.googlemail.com';
$config['smtp_port'] = 465;
$config['smtp_user'] = 'account1@gmail.com';
$config['smtp_pass'] = 'mypassword';
$this->load->library('email', $config);
$this->email->from('account1@gmail.com', 'Admin');
$this->email->to($this->input->post('email'));
$this->email->subject('Get your forgotten Password');
$this->email->message('Please go to this link to get your password.
http://localhost/final-project/get_password/index/'.$rs );
$this->email->send();
echo "Please check your email address.";
}
}
get_password控制器用于重置它..
查看文件:email_check
<?php echo validation_errors(); ?>
<form action="<?php site_url('mysite/change_password'); ?>" method="post">
<h2> email</h2>
<input type="text" size="30" id="email" name="email"/>
<br/>
<input type="submit"name="submit" value="Submit"/>
</form>
答案 0 :(得分:0)
我终于发现了什么问题。代码非常好,但我仍然无法弄清楚为什么它不起作用。
所有我必须添加的是这一行:
$this->email->set_newline("\r\n");
之后:
$this->load->library('email', $config);
现在发送电子邮件。我希望这能帮助很多人提出类似的问题。