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

我用email类发邮件全部都进垃圾箱里面

[复制链接]
发表于 2010-11-25 11:36:53 | 显示全部楼层 |阅读模式
大家遇到过这个问题吗?
PHP复制代码
              $your_name = $this->input->post('your_name');
              $your_email = $this->input->post('your_email');
              $to_email = $this->input->post('to_email');
              $subject = $this->input->post('subject');
              $message = $this->input->post('message');
             
                        $this->load->library('email');
                       
                        $this->email->from($your_email,$your_name);
                        $this->email->to($to_email);
                        $this->email->subject($subject);
                        $this->email->message($message);
                       
                        if($this->email->send())
                        {
                                echo 'Sent successfully,<a href="/ci/index.php/email">return</a>.';
                        }
                       
                        else
                        {
                                show_error($this->email->print_debugger());
                        }
复制代码
发表于 2010-11-25 12:31:27 | 显示全部楼层
你这个和 CI 无关,和你的 SMTP、邮件内容、对方收件服务器都有关。
现在垃圾邮件泛滥,各家邮局系统判断都很严格,进垃圾邮件很正常。

本版积分规则