Sending multiple emails
-
Hi,
How can I send ten unique emails using wp_mail? I don’t want the other recipients to see each other.
I currently have an array of the user_emails. Should I loop through them and trigger wp_mail for each one or is there a better practice?
Currently I have
wp_mail( $user_email_addresses, $subject, $message, $headers );
where user_email_addresses is an array of email addresses
I could bcc but I thought that would not be good practice.
Thanks!
Elliot
- The topic ‘Sending multiple emails’ is closed to new replies.