在本地XAMPP服务器中使用CodeIgniter发送电子邮件

时间:2010-06-18 10:46:32

标签: email codeigniter xampp

我正在尝试通过localhost发送电子邮件(XAMPP Windows 1.7.3安装),但我已经尝试了几个小时而没有成功。

这是我尝试的最后一个代码:

$config = Array(
      'protocol' => 'smtp',
      'smtp_host' => 'ssl://smtp.gmail.com',
      'smtp_port' => 465,
      'smtp_user' => 'mygoogleappsuser@mydomain.com',
      'smtp_pass' => 'mypassword',
    );


    $this->load->library('email', $config);
    $this->email->set_newline("\r\n");

    $this->email->from('mygoogleappsuser@mydomain.com', 'My Name');
    $this->email->to('recepient@example.com');


    $this->email->subject('Email Test');
    $this->email->message('Testing the email class.');

     if($this->email->send())
     {
     echo 'Your email was sent.';
     }
     else
     {
     show_error($this->email->print_debugger());
     }

每当我尝试加载此页面时,页面显示它正在加载但没有任何反应。我需要在服务器中设置什么来确保电子邮件发送?

我搞砸了php.ini和sendmail的配置,没有运气。如果重要的话,openSSL不可用。

知道什么是错的吗?

1 个答案:

答案 0 :(得分:0)

确保在php.ini中启用了php_openssl.dll和php_smtp.dll(安装的apache / bin /文件夹中的那个)。

为什么unnt opensll可用?