#i', "\n", $order->get_formatted_billing_address() ) . "\n"; // WPCS: XSS ok.
if ( $order->get_billing_phone() ) {
echo $order->get_billing_phone() . "\n"; // WPCS: XSS ok.
}
if ( $order->get_billing_email() ) {
echo $order->get_billing_email() . "\n"; // WPCS: XSS ok.
}
if ( ! kkart_ship_to_billing_address_only() && $order->needs_shipping_address() ) {
$shipping = $order->get_formatted_shipping_address();
if ( $shipping ) {
echo "\n" . esc_html( kkart_strtoupper( esc_html__( 'Shipping address', 'kkart' ) ) ) . "\n\n";
echo preg_replace( '#
#i', "\n", $shipping ) . "\n"; // WPCS: XSS ok.
}
}