I am using php mailer script to send emails in my project. When I send mail from the BCC using the code below
$mail->AddBCC( test@test.com )
The email received by the user test@test.com , but the information content specified in the header of the received message does not show BCC information, as shown below.
Bcc: test@test.com
How can i achieve this. Thanks in advance.
source share