✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/woocommerce/templates/emails//email-header.php
<?php
/**
 * Email Header
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/emails/email-header.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://woocommerce.com/document/template-structure/
 * @package WooCommerce\Templates\Emails
 * @version 10.7.0
 */

use Automattic\WooCommerce\Utilities\FeaturesUtil;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

$email_improvements_enabled = FeaturesUtil::feature_is_enabled( 'email_improvements' );
$store_name                 = $store_name ?? get_bloginfo( 'name', 'display' );

/**
 * Filter the URL used for the email header image/logo link.
 *
 * Return an empty string to disable the link.
 *
 * @since 10.7.0
 * @param string $url The URL to link to. Defaults to the site home URL.
 */
$header_image_url = apply_filters( 'woocommerce_email_header_image_url', home_url() );

?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" />
		<meta content="width=device-width, initial-scale=1.0" name="viewport">
		<title><?php echo esc_html( $store_name ); ?></title>
	</head>
	<body <?php echo is_rtl() ? 'rightmargin' : 'leftmargin'; ?>="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
		<table width="100%" id="outer_wrapper" role="presentation">
			<tr>
				<td><!-- Deliberately empty to support consistent sizing and layout across multiple email clients. --></td>
				<td width="600">
					<div id="wrapper" dir="<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>">
						<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="inner_wrapper" role="presentation">
							<tr>
								<td align="center" valign="top">
									<?php
									$img = get_option( 'woocommerce_email_header_image' );
									/**
									 * This filter is documented in templates/emails/email-styles.php
									 *
									 * @since 9.6.0
									 */
									if ( apply_filters( 'woocommerce_is_email_preview', false ) ) {
										$img_transient = get_transient( 'woocommerce_email_header_image' );
										$img           = false !== $img_transient ? $img_transient : $img;
									}

									if ( $email_improvements_enabled ) :
										?>
										<table border="0" cellpadding="0" cellspacing="0" width="100%" role="presentation">
											<tr>
												<td id="template_header_image">
													<?php
													if ( $img ) {
														$image_html = '<img src="' . esc_url( $img ) . '" alt="' . esc_attr( $store_name ) . '" />';
														if ( $header_image_url ) {
															// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $image_html is built from esc_url() and esc_attr().
															echo '<p style="margin-top:0;"><a href="' . esc_url( $header_image_url ) . '" style="display: inline-block; text-decoration: none;" target="_blank">' . $image_html . '</a></p>';
														} else {
															// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
															echo '<p style="margin-top:0;">' . $image_html . '</p>';
														}
													} elseif ( $header_image_url ) {
														echo '<p class="email-logo-text"><a href="' . esc_url( $header_image_url ) . '" style="color: inherit; text-decoration: none;" target="_blank">' . esc_html( $store_name ) . '</a></p>';
													} else {
														echo '<p class="email-logo-text">' . esc_html( $store_name ) . '</p>';
													}
													?>
												</td>
											</tr>
										</table>
									<?php else : ?>
										<div id="template_header_image">
											<?php
											if ( $img ) {
												$image_html = '<img src="' . esc_url( $img ) . '" alt="' . esc_attr( $store_name ) . '" />';
												if ( $header_image_url ) {
													// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $image_html is built from esc_url() and esc_attr().
													echo '<p style="margin-top:0;"><a href="' . esc_url( $header_image_url ) . '" style="display: inline-block; text-decoration: none;" target="_blank">' . $image_html . '</a></p>';
												} else {
													// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
													echo '<p style="margin-top:0;">' . $image_html . '</p>';
												}
											}
											?>
										</div>
									<?php endif; ?>
									<table border="0" cellpadding="0" cellspacing="0" width="100%" id="template_container" role="presentation">
										<tr>
											<td align="center" valign="top">
												<!-- Header -->
												<table border="0" cellpadding="0" cellspacing="0" width="100%" id="template_header" role="presentation">
													<tr>
														<td id="header_wrapper">
															<h1><?php echo esc_html( $email_heading ); ?></h1>
														</td>
													</tr>
												</table>
												<!-- End Header -->
											</td>
										</tr>
										<tr>
											<td align="center" valign="top">
												<!-- Body -->
												<table border="0" cellpadding="0" cellspacing="0" width="100%" id="template_body" role="presentation">
													<tr>
														<td valign="top" id="body_content">
															<!-- Content -->
															<table border="0" cellpadding="20" cellspacing="0" width="100%" role="presentation">
																<tr>
																	<td valign="top" id="body_content_inner_cell">
																		<div id="body_content_inner">


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
block
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
plain
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
admin-cancelled-order.php
2.84 KB
3 Mar 2025 10.28 PM
builxejc / builxejc
0644
admin-failed-order.php
2.845 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
admin-new-order.php
2.691 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
admin-payment-gateway-enabled.php
2.5 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
customer-cancelled-order.php
3.017 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-completed-order.php
2.835 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-failed-order.php
3.331 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-fulfillment-created.php
3.29 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-fulfillment-deleted.php
3.455 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-fulfillment-updated.php
3.744 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
customer-invoice.php
4.167 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-new-account.php
3.829 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-note.php
2.965 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-on-hold-order.php
3.039 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-pos-completed-order.php
3.876 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-pos-refunded-order.php
4.267 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-processing-order.php
3.133 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-refunded-order.php
3.513 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-reset-password.php
3.163 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
customer-review-request.php
2.949 KB
11 May 2026 5.17 PM
builxejc / builxejc
0644
customer-stock-notification-verified.php
3.562 KB
1 Sep 2025 11.44 PM
builxejc / builxejc
0644
customer-stock-notification-verify.php
2.958 KB
1 Sep 2025 11.44 PM
builxejc / builxejc
0644
customer-stock-notification.php
3.642 KB
1 Sep 2025 11.44 PM
builxejc / builxejc
0644
email-addresses.php
4.077 KB
23 Feb 2026 5.58 PM
builxejc / builxejc
0644
email-customer-details.php
1.18 KB
21 Jan 2025 6.53 PM
builxejc / builxejc
0644
email-downloads.php
3.477 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
email-footer.php
2.758 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
email-fulfillment-details.php
4.235 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
email-fulfillment-items.php
5.421 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
email-header.php
5.708 KB
30 Mar 2026 5.12 PM
builxejc / builxejc
0644
email-mobile-messaging.php
0.79 KB
10 Apr 2024 4.54 PM
builxejc / builxejc
0644
email-order-details.php
8.233 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
email-order-items.php
7.947 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
email-styles.php
15.641 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF