# yaymail/4.3.3/templates/shortcodes/billing-address/sample.php

YayMail – WooCommerce Email Customizer, version 4.3.3. 17 lines.

- Page: https://pluginprobe.com/plugins/yaymail/4.3.3/code/templates/shortcodes/billing-address/sample.php
- Raw: https://pluginprobe.com/plugins/yaymail/4.3.3/raw/templates/shortcodes/billing-address/sample.php
- Modified: 2026-02-12T15:49:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yaymail/4.3.3/code/templates/shortcodes/billing-address/sample.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

$address       = '<span>John Doe <br>YayCommerce <br>7400 Edwards Rd <br>Edwards Rd</span>';
$billing_phone = '(910) 529-1147';
?>
<address>
    <?php echo wp_kses_post( $address ); ?>
    <br/>
    <a href='tel:<?php echo esc_attr( $billing_phone ); ?>' style="font-family: inherit">
        <?php echo esc_html( $billing_phone ); ?>
    </a>
    <br>
</address>

```
