package = $package; } /** * Init - register handlers for WooCommerce core email hooks. */ public function init() { // This method is intentionally left blank. } /** * Trigger new account email. * * @param int $customer_id The ID of the new customer account. * @param array $new_customer_data Assoc array of data for the new account. */ public function customer_new_account( $customer_id = 0, array $new_customer_data = array() ) { // This method is intentionally left blank. } }