/** * Add custom content to a specific customer order email */ add_action('woocommerce_email_before_order_table', 'cc_add_custom_content_specific_email', 20, 4); function cc_add_custom_content_specific_email($order, $sent_to_admin, $plain_text, $email) { if ($email->id == 'customer_completed_order') { echo '

TAX INVOICE

Smith & Smith Pty Ltd
26 Smith Street, Smithville, NSW 2000
Tel: +61 (0)2 9876 5432
ABN 11 111 111 111

'; } }