【发布时间】:2014-07-16 07:43:35
【问题描述】:
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();
任何建议将不胜感激!
【问题讨论】:
标签: codeigniter email bcc