Skip to content

Instantly share code, notes, and snippets.

@m4munib
Last active October 13, 2018 08:26
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 m4munib/053feb378ecd615c434496f3487ca7f8 to your computer and use it in GitHub Desktop.
Save m4munib/053feb378ecd615c434496f3487ca7f8 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'woocommerce_email_classes', 'mk_woocomerce_my_custom_email' );
function mk_woocomerce_my_custom_email( $email_classes ) {
// add the email class to the list of email classes that WooCommerce loads
$email_classes['Mk_Custom_Mail_Class'] = new Mk_Custom_Mail_Class();
return $email_classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment