wp_mail is not sending email if I pass an array of emails
If you want to send the email to more than one user, then you can write a loop. foreach ($employee_emails as $email) { wp_mail( $email, $subject, $message ); } This will loop through all the email addresses in the array and send the email to each one of them. UPDATE You can store your email … Read more