-1

我必须为网站编写登录、注册和受限成员功能,我一切正常,但我无法测试发送验证电子邮件,但也需要。查看它是否发送并测试电子邮件中的验证链接。

我正在运行 Acer Aspire 5920,

Ubuntu 12.04,

Xampp 1.8.1,

代码点火器 2.1.3

4

1 回答 1

-1

为了回答我自己的问题,我需要传递信息来配置 xampp 以发送电子邮件:

$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'gmail.login@googlemail.com',
'smtp_pass' => 'your_password',
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");

$this->email->from('gmail.login@googlemail.com', 'Your Name');
$this->email->to('recipient@destination.tld');

$this->email->subject(' CodeIgniter Rocks Socks ');
$this->email->message('Hello World');


if (!$this->email->send()){
    show_error($this->email->print_debugger());
}else{
    echo 'Your e-mail has been sent!'; 
}
于 2012-12-01T02:05:24.193 回答