5

I am using php mailer script for sending emails in my project. When i send mail with bcc using the below code

$mail->AddBCC([email protected])

The email received by [email protected] user but information content showed in the header of the email received doesn’t show BCC information as below.

Bcc: [email protected] 

How can I achieve it. Thanks in advance.

Samsu
  • 61
  • 1
  • 7

2 Answers2

7

BCC information is automatically moved from BCC to RCPT field by the SMTP server. You will not see BCC fields in the recipient's mailbox.

You will find a good answer to a similar question here: https://stackoverflow.com/a/2750359/239599

Community
  • 1
  • 1
naivists
  • 32,681
  • 5
  • 61
  • 85
  • Hi Naivists thank you very much for quick replay .Bcc information can viewed from the bcc mailbox as similar to gmail. how can i achieve it. – Samsu Nov 23 '12 at 07:01
0

If you use mailhog, click on the Show headers an you will see the cc and bcc

enter image description here

Cristea
  • 913
  • 10
  • 15