wp_mail_original_content

wp_mail_original_content

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.4.3

apply_filters('wp_mail_original_content') is found 1 times:

  • /wp-mail.php line 193
    	 * @since 2.8.0
    	 *
    	 * @param string $content The original email content.
    	 */
    	$content = apply_filters( 'wp_mail_original_content', $content );
    
    	if ( false !== stripos( $content_transfer_encoding, 'quoted-printable' ) ) {
    		$content = quoted_printable_decode( $content );
    	}
    
    	if ( function_exists( 'iconv' ) && ! empty( $charset ) ) {