HI, I'm using phpmailer to send my mail and I want to send some emails to manyone .Is it possible to add more than one email address in phpmailer to send emails to?If so,How can I do so? Thanks
You mean I write it like this: $mail->AddBCC('address1','Name1'); $mail->AddBCC('address2','Name2'); $mail->AddBCC('address3','Name3'); or I should write $mail->send(); after each line? Thanks
like your example: $mail->AddBCC('address1','Name1'); $mail->AddBCC('address2','Name2'); $mail->AddBCC('address3','Name3'); if ($mail is your object, of course)