用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3675|回复: 3
收起左侧

[已解决] CI 2.0 发送Email 设置问题,请大家热心帮助

[复制链接]
发表于 2011-3-10 14:00:35 | 显示全部楼层 |阅读模式
刚刚接触CI,就碰到问题了
想做邮件推送,就写了
<?php
class Email extends CI_Controller{
function __construct(){
  parent::__construct();
}
function index()
{
  $config = Array(
        'protocol' => 'smtp',
        'smtp_host' => 'smtp.163.com',
        'smtp_user' => 'xxx@163.com'',
        'smtp_pass' => 'xxxx',
         );
  $this->load->library('email',$config);
  $this->email->set_newline('\r\n');
  $this->email->from('xxx@163.com','Information');
  $this->email->to('xxx@163.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';
  }
  else{
  echo $this->email->print_debugger();
  }
}
}
xxx@163.com都为正常注册过的email,密码也正确,除了163邮箱,其他邮箱也都试过
一直报错
Unable to load the requested language file: language/ch/email_lang.php

检查很多遍了,没看出究竟,请大家指点
谢谢
 楼主| 发表于 2011-3-10 14:48:47 | 显示全部楼层
找到问题了
发表于 2011-3-10 15:01:15 | 显示全部楼层
Unable to load the requested language file: language/ch/email_lang.php

很明显是你没有ch的语言文件夹,而你又在config.php看到了语言配置项,想当然的把那个english的值给改成ch了。我猜的对吗?
发表于 2012-6-27 20:40:15 | 显示全部楼层
SaxonC 发表于 2011-3-10 14:48
找到问题了

怎么回事呢?

本版积分规则