Skip to content

Instantly share code, notes, and snippets.

@ChromeOrange
Created May 6, 2015 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChromeOrange/7b89e9cab49cfd82543e to your computer and use it in GitHub Desktop.
Save ChromeOrange/7b89e9cab49cfd82543e to your computer and use it in GitHub Desktop.
custom_woocommerce_email_order_meta
add_action('woocommerce_email_order_meta', 'custom_woocommerce_email_order_meta', 10,3 );
function custom_woocommerce_email_order_meta ( $order, $sent_to_admin, $plain_text ) {
wp_mail( 'YOUR_EMAIL_ADDRESS', 'woocommerce_email_order_meta ' . time(), '<pre>' . print_r( $order, TRUE ) . '</pre>' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment