How to get OS information in email header using PHP mailer script

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.

+4
source share
1 answer

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

You will find a good answer to a similar question: fooobar.com/questions/363974 / ...

+4
source

Source: https://habr.com/ru/post/1447873/


All Articles