To send email in Bcc to multiple users no "TO" user

1.6k Views Asked by At

I am tring to sent email to multiplw users in Bcc through PHP mail scriptcode is as follows -

$recipients =array('[email protected]','[email protected]');


$headers  = 'MIME-Version: 1.0' . "\r\n";
        $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

        $to = '';
        $subject = "E-mail subject";
        $body = "E-mail body";
        $headers = 'From: [email protected]' . "\r\n" ;
        $headers .= 'Reply-To: [email protected]' . "\r\n";
        $headers .= 'BCC: ' . implode(', ', $recipients) . "\r\n";

        $email =mail($to, $subject, $body, $headers);

if we leave $to black then user in gmail detail shows "to undisclosed recipients" and Bcc not shows how can be show "Bcc me (user who got mail)" i search a lot, but didn't got any proper answer

2

There are 2 best solutions below

0
On

BCC stands for Blind Carbon Copy and its main purpose is, that you can not see the other recipients of that mail.

If you want to show all email addresses use CC (Carbon Copy) instead.

Be aware, though, that all recipients now can see all other recipients' email addresses, which increases the probabilities having those email addresses end up in spam catalogs.

0
On

You can't control how the people at Gmail decide to display the recipients list when reading an email. Each webmail system decides how they want to display the recipients list.

Maybe you can fin another webmail system that decided to display "Sent to me@my-email" instead of "Undisclosed recipients"...but why does it matter to you?
Why do you care about that? I'd say it is a false problem. Since you received the email, it was of course sent to you.