Phpmailer AddBcc not working
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using phpmailer to sent email, and it works the recipients receive the mail except the bcc and cc details is not showing the mail. Someone can suggest a solution to this . the code is require_once("PHPMailer_v5.1/class.phpmailer.php"); require_once("PHPMailer_v5.1/language/phpmailer.lang-en.php"); $mailer = new PHPMailer(); $mailer->IsSMTP(); $mailer->SMTPAuth = true; $mailer->SMTPSecure = "tls"; $mailer->Host = 'smtp.gmail.com'; $mailer->Port = 587; $mailer->Username = "myuserid"; $mailer->Password = "mypassword"; $mailer->FromName =