diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php index 6a259069d1..a75af2ee99 100644 --- a/src/wp-includes/formatting.php +++ b/src/wp-includes/formatting.php @@ -4199,6 +4199,8 @@ function wp_staticize_emoji( $text ) { * @return array The email data array, with emoji in the message staticized. */ function _wp_staticize_emoji_for_email( $mail ) { - $mail['message'] = wp_staticize_emoji( $mail['message'], true ); + if ( isset( $mail['message'] ) ) { + $mail['message'] = wp_staticize_emoji( $mail['message'], true ); + } return $mail; }