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
Post a Comment