验证密码失败。错误:535-5.7.8 用户名和密码不被接受 [重复]

Posted

技术标签:

【中文标题】验证密码失败。错误:535-5.7.8 用户名和密码不被接受 [重复]【英文标题】:Failed to authenticate password. Error: 535-5.7.8 Username and Password not accepted [duplicate] 【发布时间】:2017-11-29 09:29:22 【问题描述】:

我使用 CodeIgniter 发送邮件,但它返回此错误:

验证密码失败。错误:535-5.7.8 用户名和 密码不被接受

这是我的代码:

 $this->load->library('email');
        $config = Array(
            'protocol' => 'smtp',
            'smtp_host' => 'ssl://smtp.googlemail.com',
            'smtp_port' => 587,
            'smtp_user' => 'my@gmail.com',
            'smtp_pass' => 'mypass',
            'mailtype'  => 'html',
            'charset'   => 'iso-8859-1'
        );
        $this->load->library('email', $config);
        $this->email->from('my@gmail.com');
        $this->email->to('send@gmail.com');
        $this->email->subject('This the test');
        $this->email->message('this is the test message');
        if (!$this->email->send())
        
            echo $this->email->print_debugger();

        

我已经使用这个问题配置了我的 Xampp 服务器:How to configure XAMPP to send mail from localhost?

【问题讨论】:

这是来自邮件服务器的响应。听起来您为该服务器使用了错误的用户名和密码。 【参考方案1】:

如果您使用的是 ssl,请将 smtp 端口更改为 465。

【讨论】:

以上是关于验证密码失败。错误:535-5.7.8 用户名和密码不被接受 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

我收到错误“ 错误:无效登录:535-5.7.8 用户名和密码不被接受。”当我尝试使用 Node JS 中的模块 nodemailer 发送邮件时

预期响应代码 250,但得到代码“535”,消息“535-5.7.8 用户名和密码不被接受

Laravel 5 邮箱重置密码

让 nodemailer 使用不同的 gmail 帐户发送电子邮件

设计 - “忘记密码”功能 - 不接受用户名和密码

编写一个系统(登录注册验证用户名密码和验证码覆盖存储用户)