发新话题
打印

邮件发送问题

本主题由 沧蓝 于 2008-4-1 19:07 移动

邮件发送问题

我做了一个测试网站 但是邮件发送后始终接受不到 请问是甚么原因?

TOP

请问你使用的是什么邮件发送方式?
QQ: 49489680
MSN: zhaochang_tj AT hotmail DOT com

TOP

复制内容到剪贴板
PHP 代码:
   function mail(){
        /*
                mail config
                */

                $config['protocol'] = 'smtp';//采用smtp方式,方便租用主机的用户
                $config['smtp_host'] = 'smtp.126.com';
                $config['smtp_user'] = 'mytest4126';//邮箱帐号为[email]mytest4126@126.com[/email]
                $config['smtp_pass'] = '******';
                //$config['charset'] = 'iso-8859-1';
                $config['charset'] = 'utf-8';
                $config['wordwrap'] = TRUE;
                $config['mailtype'] = "html";
               
        $this->load->library('email');
        $this->email->initialize($config);
                $this->email->from('mytest4126@126.com', '我是发件人');
                $this->email->to('foreveronline@163.com');//收件人
                $this->email->subject('中文主题');
                $this->email->message('这是中文的正文部分.');

                if(!$this->email->send())
                {
                show_error("发送mail时,发生错误!");
                //echo $this->email->print_debugger();
                exit;
                }
    }

TOP

发新话题