woocommerce_emogrifier action-hookWC 1.0

Usage

add_action( 'woocommerce_emogrifier', 'wp_kama_woocommerce_emogrifier_action', 10, 2 );

/**
 * Function for `woocommerce_emogrifier` action-hook.
 * 
 * @param  $css_inliner 
 * @param  $that        
 *
 * @return void
 */
function wp_kama_woocommerce_emogrifier_action( $css_inliner, $that ){

	// action...
}
$css_inliner
-
$that
-

Where the hook is called

WC_Email::style_inline()
woocommerce_emogrifier
woocommerce/includes/emails/class-wc-email.php 615
do_action( 'woocommerce_emogrifier', $css_inliner, $this );

Where the hook is used in WooCommerce

Usage not found.