HEX
Server: Apache
System: Linux andromeda.lojoweb.com 4.18.0-372.26.1.el8_6.x86_64 #1 SMP Tue Sep 13 06:07:14 EDT 2022 x86_64
User: nakedfoamlojoweb (1056)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/woocommerce-square/templates/emails/plain/gift-card-sent.php
<?php
defined( 'ABSPATH' ) || exit;

echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n";
echo esc_html( wp_strip_all_tags( $email_heading ) );
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";

printf(
	/* translators: %1$s - Gift card recipient's name, %2$s - Gift card sender's name */
	esc_html__( 'Hey %1$s, %2$s sent you a %3$s gift card!', 'woocommerce-square' ),
	esc_html( $gift_card_recipient_name ),
	esc_html( $gift_card_sender_name ),
	esc_html( get_bloginfo( 'name' ) )
);

echo "\n\n----------\n\n";

echo esc_html(
	sprintf(
		/* translators: %1$s - Gift card account number, %2$s - Gift card balance */
		__( 'Your gift card with the number %1$s is loaded with an amount of %2$s.', 'woocommerce-square' ),
		esc_html( $gift_card_number ),
		wc_price( $gift_card_balance ),
	)
);

echo "\n\n----------\n\n";

if ( $gift_card_sender_message ) {
	printf(
		/* translators: %1$s - Gift card sender's name, %2$s - Gift card sender's message */
		esc_html__( '%1$s has a message for you: "%2$s"', 'woocommerce-square' ),
		esc_html( $gift_card_sender_name ),
		esc_html( wp_strip_all_tags( wptexturize( $gift_card_sender_message ) ) )
	);
	echo "\n\n----------\n\n";
}


/**
 * Show user-defined additional content - this is set in each email's settings.
 */
if ( $additional_content ) {
	echo esc_html( wp_strip_all_tags( wptexturize( $additional_content ) ) );
	echo "\n\n----------------------------------------\n\n";
}

// Documented in Woo Core.
// phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment
echo wp_kses_post( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) );