PHP send mail to multiple email -


i have code

<?php if(!empty($_post['invite'])) {   foreach($_post['invite'] $check) {    } $import_emails =  implode($_post['invite'], ','); $imp_eml = explode(',', $import_emails);  $mail->addaddress($imp_eml [0]); $mail->addbcc($imp_eml); ...... ...... }      ?> 

i want send multiple emails in addbcc confuse how send , type loop should use send multiple emails.

have idea?

you can send multiple recipients separating them ;

edit: woops, forget :d


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

java.util.scanner - How to read and add only numbers to array from a text file -

iphone - Three second countdown in cocos2d -