Codeigniter "bcc" 不起作用,但是带有 "to" 的相同代码可以正常工作!任何建议为什么会发生这种情况以及如何解决它?
这是我的代码:
$email = "myEmail@myWebsite.com";
$subject = "my subject";
$message = "my message";
$this->email->set_mailtype("html"); // In my actual code this is needed
$this->email->from('myWebsiteEmail@myWebsite.com', 'Info');
// $this->email->to($email); // It works with this code
$this->email->bcc($email); // It doesn't work with this code
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
任何建议,将不胜感激!