diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index 824863ecf4..d108e4a457 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -1082,7 +1082,7 @@ function wp_notify_postauthor( $comment_id, $comment_type = '' ) { $message_headers = apply_filters( 'comment_notification_headers', $message_headers, $comment_id ); foreach ( $emails as $email ) { - @wp_mail( $emails, $subject, $notify_message, $message_headers ); + @wp_mail( $email, $subject, $notify_message, $message_headers ); } return true;