23 lines
822 B
PHP
23 lines
822 B
PHP
<?php
|
|
/**
|
|
* Recipient email address table.
|
|
*
|
|
* @package WooCommerce Subscriptions Gifting/Templates/Emails
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
?>
|
|
<table id="addresses" cellspacing="0" cellpadding="0" style="width: 100%; vertical-align: top; margin-bottom: 40px; padding:0;" border="0">
|
|
<tr>
|
|
<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && ( $shipping = $order->get_formatted_shipping_address() ) ) : ?>
|
|
<td style="font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; padding:0;" valign="top" width="50%">
|
|
<h2><?php echo esc_html__( 'Shipping address', 'woocommerce-subscriptions' ); ?></h2>
|
|
|
|
<address class="address"><?php echo wp_kses_post( $shipping ); ?></address>
|
|
</td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
</table>
|