ION_AUTH不发送带有SMTP的电子邮件

时间:2013-05-31 07:17:30

标签: smtp ion-auth

我在控制器中触发:

if($this->ion_auth->register($login, $pass, $mail, $data, array('2'))){
                        echo $this->ion_auth->messages();
                        echo $this->ion_auth->errors();
                    }else{
                        echo $this->ion_auth->errors();
                    }

我正在编辑config ion_auth:

 | Email options.
 | -------------------------------------------------------------------------
 | email_config:
 |    'file' = Use the default CI config or use from a config file
 |    array  = Manually set your email config settings
 */
$config['use_ci_email'] = TRUE; // Send Email using the builtin CI email class, if false it will return the code and the identity
$config['email_config'] = array(
    'mailtype' => 'html',
    'protocol' => 'smtp',
    'smtp_host' => 'smtp.mail.ru',
    'smtp_user' => 'user',
    'smtp_pass' => 'pass',
);

ION_AUTH发送错误 - 激活unseccesefull 请帮我! 在用户输入的数据库中,但邮件不是通过SMTP发送的。 如何在电子邮件新闻稿ION_AUTH中显示调试信息?

0 个答案:

没有答案