嗨,我的网站似乎不接受来自特定电子邮件地址的电子邮件。这是为什么?我正在使用代码点火器2.1。以下是我的代码片段:
$config['wordwrap'] = FALSE;
$config['mailtype'] = 'html';
$this->email->initialize($config);
$a=$this->load->view('cart/email',$data,true);
$this->email->from($data['email'], $data['fname'].' '.$data['lname']);
$this->email->to('order@abc.ca');
$this->email->subject('Your Order');
$this->email->message($a);
$this->email->send();
echo $this->email->print_debugger();
调试器的结果是“使用以下协议成功发送了您的邮件:mail”
这是在公共Linux服务器上(不是localhost)