' . esc_html__( 'Note from the store:', 'woocommerce' ) . '

'; echo '
' . wp_kses_post( wpautop( wptexturize( $customer_note_text ) ) ) . '
'; } /** * Hook for the woocommerce_email_fulfillment_details. * * @since 10.1.0 * @param WC_Order $order The order object. * @param Fulfillment $fulfillment The fulfillment object. * @param bool $sent_to_admin Whether the email is sent to admin. * @param bool $plain_text Whether the email is plain text. * @param WC_Email $email The email object. * * @hooked WC_Emails::fulfillment_details() Shows the fulfillment details. */ do_action( 'woocommerce_email_fulfillment_details', $order, $fulfillment, $sent_to_admin, $plain_text, $email ); /** * Hook for the woocommerce_email_fulfillment_meta. * * @param WC_Order $order The order object. * @param Fulfillment $fulfillment The fulfillment object. * @param bool $sent_to_admin Whether the email is sent to admin. * @param bool $plain_text Whether the email is plain text. * @param WC_Email $email The email object. * @since 10.1.0 * * @hooked WC_Emails::order_meta() Shows fulfillment meta data. */ do_action( 'woocommerce_email_fulfillment_meta', $order, $fulfillment, $sent_to_admin, $plain_text, $email ); /** * Hook for woocommerce_email_customer_details. * * @param WC_Order $order The order object. * @param bool $sent_to_admin Whether the email is sent to admin. * @param bool $plain_text Whether the email is plain text. * @param WC_Email $email The email object. * @since 2.5.0 * * @hooked WC_Emails::customer_details() Shows customer details * @hooked WC_Emails::email_address() Shows email address */ do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );