使用codeigniter从xampp发送电子邮件

时间:2016-01-09 19:44:01

标签: php codeigniter email gmail

尝试使用codeigniter发送电子邮件时遇到错误。我已经测试了我正在使用的在线服务器的功能,但它仍然会引发相同的错误。

以下是我的功能:

//send email
    function sendEmail() {
        $config = Array(
            'protocol' => 'smtp',
            'smtp_host' => 'ssl://smtp.googlemail.com',
            'smtp_port' => 465,
            'smtp_user' => 'email', // change it to yours
            'smtp_pass' => 'pswd', // change it to yours
            'mailtype' => 'html',
            'charset' => 'iso-8859-1',
            'wordwrap' => TRUE
        );

        $message = 'Test message';
        $this->load->library('email', $config);
        $this->email->set_newline("\r\n");
        $this->email->from('zzz@gmail.com'); // change it to yours
        $this->email->to('xxx@gmail.com'); // change it to yours
        $this->email->subject('Resume from JobsBuddy for your Job posting');
        $this->email->message($message);
        if ($this->email->send()) {
            echo 'Email sent.';
        } else {
            show_error($this->email->print_debugger());
        }
    }

我收到以下错误:

  

无法验证密码。错误:534-5.7.14请通过登录   您的网络浏览器和534-5.7.14然后再试一次。 534-5.7.14了解更多信息   在534 5.7.14 https://support.google.com/mail/answer/78754   w84sm8590284ioi.20 - gsmtp无法使用PHP SMTP发送电子邮件。您的   服务器可能未配置为使用此方法发送邮件。

请帮助

1 个答案:

答案 0 :(得分:0)

答案与代码无关,但由于必须启用您的Gmail帐户才能允许smtp / IMAP访问。来自document

  1. 登录Gmail网络界面。
  2. 打开“设置”页面上的“转发和POP / IMAP”标签,然后配置IMAP或POP。
  3. 在Gmail中启用此功能后,请务必点击“保存更改”,以便Gmail可以与您的邮件客户端进行通信