Send Admin Emails to Multiple Email Addresses

Is there a hook that would allow me to email multiple email addresses for the default admin email notifications? I was hoping I could build an array: $adminEmails = array(‘[email protected]’, ‘[email protected]’); Then have all admin emails (like new user notifications) sent to $adminEmails Possible? 3 s 3 Try this: update_option( ‘admin_email’, ‘[email protected], [email protected]’ ); Note … Read more

PHP mail function doesn’t complete sending of e-mail

<?php $name = $_POST[‘name’]; $email = $_POST[’email’]; $message = $_POST[‘message’]; $from = ‘From: yoursite.com’; $to = ‘[email protected]’; $subject=”Customer Inquiry”; $body = “From: $name\n E-Mail: $email\n Message:\n $message”; if ($_POST[‘submit’]) { if (mail ($to, $subject, $body, $from)) { echo ‘<p>Your message has been sent!</p>’; } else { echo ‘<p>Something went wrong, go back and try again!</p>’; … Read more