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

[HELP] 发送邮件为什么一直等待服务器响应?

[复制链接]
发表于 2011-7-18 13:44:37 | 显示全部楼层 |阅读模式
本帖最后由 √__豿艉騲℡ 于 2011-7-18 13:45 编辑

这样写有错吗?
PHP复制代码
$config = array(
                'protocol' => 'smtp',
                'smtp_host' => 'smtp.qq.com',
                'smtp_port' => 25,
                'smtp_user' => '87538424',
                'smtp_pass' => '123',
                'charset' => 'gb2312',
                'mailtype' => 'html',
                'validate' => true
            );
           
            $this->load->library('email', $config);
            $this->email->set_newline('\r\n');
           
            $this->email->from('87538424@qq.com', 'Jason');
            $this->email->to('87538424@qq.com');
           
            $this->email->subject('测试');
            $this->email->message('测试Email');
            $this->email->send();
复制代码

本版积分规则