Hi there,
I want to send out an email to a list of subscribers. That is not the problem I have but the fact is that I do not want the subscribers to see who else has subscribed,
I want to keep their emails private of course, so not showing in the address bar.
Ok so I should use $BCC I quess but I don't know how.
How do I make a list that will send all the bcc people an email without having all those emails visible in the address bar?
If I use something like this, this not the full script but you get the picture from this lot I hope.:
$email = "me@mysite.com";
$bcclist = "her@mysite.com";
$bcclist . = "him@mysite.com";
$bcclist . = "them@mysite.com";
$bcclist . = "us@mysite.com";
$site = "my_website.com";
$to = $email;
$bcc = $bcclist;
$subject = "Yada";
$message = "More Yada Yada Yada";
$send = mail($to, $subject, $message, "From: {$site}");
$send .= mail($bcc, $subject, $message, "From: {$site}");
If I send it this way, all the emails on the bcclist will be shown in the address bar.
The origional $bcclist will be in another file as well and I will bring it in but that is not of importance I assume.
The other question is can it be done without using $bcc, so can I have an email sent and have the $to go to a list and not have all the emails showing in all those peoples address bar?
Please Help!!