$mail->Subject = " ".$row["name"]."";
$mail->Body = "xxx";
$mail->AddBCC($row["email"]);
I want to send more than one person using a while circle
now there is a problem
is sure to send it to more than one person, all will receive
but the name of the person is the same?
I have to print it out first to see if there are different names and different emails. Make sure it is different! The
title will always be a person"s name. I guess $mail- > Subject
cannot be repeated.
so can we make $mail- > Subject
and $mail- > Body
multiple displays to different users?
can have more than one
$mail- > AddBCC
.