无法发送电子邮件

时间:2013-09-17 16:24:13

标签: php codeigniter email

在下面的codeigniter中,我想发送一封电子邮件,但我无法发送给我帮助。

 <?php

/**
* SENDS EMAIL WITH GMAIL
*/
class Email extends CI_Controller
{
    function index() 
    {   
        $config = Array(
            'protocol' => 'smtp',
            'smtp_host' => 'ssl://smtp.googlemail.com',
            'smtp_port' => 465,
            'smtp_user' => 'sltechdevelop@gmail.com ',
            'smtp_pass' => 'highschool',
            'mailtype'  => 'html', 
            'charset'   => 'iso-8859-1'
            );
         $this->load->library('email', $config);
         $this->email->set_newline("\r\n");

         $this->email->from('sltechdevelop@gmail.com', 'moses');
         $this->email->to('sltechdevelop@gmail.com');       
         $this->email->subject('This is an email test');        
         $this->email->message('It is working. Great!');
         if($this->email->send())
         {
        echo 'Your email was sent, successfully.';
         }
         else
         {
        show_error($this->email->print_debugger());
          }
    }
}
?>

显示错误

The following SMTP error was encountered: 65272624 Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?
Unable to send data: AUTH LOGIN
Failed to send AUTH LOGIN command. Error: 
Unable to send data: MAIL FROM:

from: 
The following SMTP error was encountered: 
Unable to send data: RCPT TO:
to: 
The following SMTP error was encountered: 
Unable to send data: DATA
data: 
The following SMTP error was encountered: 
Unable to send data: User-Agent: CodeIgniter Date: Tue, 17 Sep 2013 16:54:03 +0000 From: "moses" Return-Path: To: sltechdevelop@gmail.com Subject: =?iso-8859-1?Q?This_is_an_email_test?= Reply-To: "sltechdevelop@gmail.com" X-Sender: sltechdevelop@gmail.com X-Mailer: CodeIgniter X-Priority: 3 (Normal) Message-ID: <5238892bc2bad@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="B_ALT_5238892bc2bbc" This is a multi-part message in MIME format. Your email application may not support this format. --B_ALT_5238892bc2bbc Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit It is working. Great! --B_ALT_5238892bc2bbc Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable It is working. Great! --B_ALT_5238892bc2bbc--
Unable to send data: .

3 个答案:

答案 0 :(得分:3)

这对我有用:

$config = Array(
    'protocol' => 'smtp',
    'smtp_host' => 'ssl://smtp.googlemail.com',
    'smtp_port' => 465,
    'smtp_auth' => true,
    'smtp_user' => 'xxx',
    'smtp_pass' => 'xxx',
    'mailtype'  => 'html', 
    'charset'   => 'iso-8859-1'
);
$this->load->library('email', $config);

详情请见此处:http://ellislab.com/forums/viewthread/132443/

答案 1 :(得分:2)

启用:来自php.ini的php_openssl.dll,存在于您的php文件夹中

答案 2 :(得分:0)

 $config = array(
          'protocol' => 'smtp',
          'smtp_host' => 'ssl://smtp.secureserver.net',
          'smtp_port' => 465,
          'smtp_auth' => true,
          'smtp_user' => 'uername',
          'smtp_pass' => 'password',
          'mailtype' => 'html',
          'charset' => 'iso-8859-1'
          );
          $this->load->library('email', $config);
相关问题