BCC / CC(ヘッダー内)で指定された受信者は受信されません。似たような質問の投稿がいくつか見つかりましたが、回答はありません...
コードは以下のとおりです。質問は次のとおりです。「同様の問題が発生したことはありますか?」
require_once "Mail.php";
$host = "mail.mailserver.com";
$username = "notification@yourhost.com";
$password = "getyourownpassword";
$headers = array ('From' => "User Name <$username>",
'To' => $to_,
'Cc' => 'Patty <patty@gmail.com>',
'Subject' => $subj_,
'Content-type' => 'text/html');
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to_, $headers, $mail_msg);