无法测试php在xampp中发送电子邮件验证

时间:2012-12-01 01:26:53

标签: codeigniter email xampp

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

我正在运行Acer Aspire 5920,

Ubuntu 12.04,

Xampp 1.8.1,

Codeigniter 2.1.3

1 个答案:

答案 0 :(得分:-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!'; 
}