Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to bcc an e-mail with php

Status
Not open for further replies.

gameon

Programmer
Feb 23, 2001
325
GB
Hi, I am using php to send an e-mail with a form.

I am using:

$recipient1 = &quot;<$sender_email>&quot;;
$subject1 = &quot;Subject&quot;;
$mailheaders = &quot;From: emaill@email.com\n&quot;;
$mailheaders .= &quot;Reply-To: emaill@email.com\r\n&quot;;
$mailheaders .= &quot;Content-Type: text\r\n&quot;;

I would like to make it so the recipient is just something like, 'The mailing list' and a bcc: field would be a big list of e-mail addressess (5000).

Is this possible...

Cheers,

Matt
 
hi
if u r fetching the email address from database
u can do something like this
while($row = mysql_fetch_array($result) ) {
$rec = $row[&quot;email&quot;] ;

$recipient1 = &quot;<$sender_email>&quot;;
$subject1 = &quot;Subject&quot;;
$mailheaders = &quot;From: emaill@email.com\n&quot;;
$mailheaders .= &quot;Reply-To: emaill@email.com\r\n&quot;;
$mailheaders .= &quot;Content-Type: text\r\n&quot;;
$mailheaders .= &quot;Bcc: $rec\r\n&quot;;

mail($recipient1, $subject1, $message, $mailheaders);

}

spookie
 
oh i am sorry ,
that will send multiple emails to receipient1.

u can make an array of Bcc receipients seperated them by &quot;,&quot;

i mean

$mailheaders = &quot;From: emaill@email.com\n&quot;;
$mailheaders .= &quot;Reply-To: emaill@email.com\r\n&quot;;
$mailheaders .= &quot;Content-Type: text\r\n&quot;;
for($i=0.. numof records){
$mailheaders .= &quot;Bcc: $rec[$i]&quot;;
$mailheaders .= &quot;,&quot;;
}

mail($recipient1, $subject1, $message, $mailheaders);

but i am not sure it will work or not because i havent done it before

regards

spookie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top