get_billing_first_name() ) ) { /* translators: %s: Customer first name */ printf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) ); } else { printf( esc_html__( 'Hi there,', 'woocommerce' ) ); } ?>

'; echo esc_html__( 'Here’s a reminder of what you’ve bought:', 'woocommerce' ) . "\n\n"; ?>

' : ''; echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) ); echo $email_improvements_enabled ? '' : ''; } /** * Show store information - store details are set in the Point of Sale settings. */ if ( ! empty( $pos_store_email ) || ! empty( $pos_store_phone_number ) || ! empty( $pos_store_address ) ) { echo '
'; if ( ! empty( $pos_store_name ) ) { echo '

' . esc_html( $pos_store_name ) . '

'; } if ( ! empty( $pos_store_email ) ) { echo '

' . esc_html( $pos_store_email ) . '

'; } if ( ! empty( $pos_store_phone_number ) ) { echo '

' . esc_html( $pos_store_phone_number ) . '

'; } if ( ! empty( $pos_store_address ) ) { echo wp_kses_post( wpautop( wptexturize( $pos_store_address ) ) ); } echo '
'; } /** * Show refund & returns policy - this is set in the Point of Sale settings. */ if ( ! empty( $pos_refund_returns_policy ) ) { echo '
'; echo '

' . esc_html__( 'Refund & Returns Policy', 'woocommerce' ) . '

'; echo wp_kses_post( wpautop( wptexturize( $pos_refund_returns_policy ) ) ); echo '
'; } /** * Hook for the woocommerce_email_footer. * * @hooked WC_Email_Customer_POS_*::email_footer() Output the email footer * @since 10.0.0 */ do_action( 'woocommerce_pos_email_footer', $email );