Two Line Address (Location) Code
Copy and paste this code block into your HTML:
<!--BEGIN LOCATION ROW-->
<tr>
<td nowrap style="text-align:left; border-style: hidden; padding-top: 0px; padding-bottom: 0px; white-space: nowrap; line-height:15px;" colspan="2">
<p class="contentStyle">
{%- if location.address_line_1 -%}
{{ location.address_line_1 | outlook_safe | raw }}
{%- if location.address_line_2 -%}
<font size="1" color="#B9B9B9">|</font> {{ location.address_line_2 | outlook_safe | raw }}
{%- endif -%}
{%- endif -%}
{%- if location.city or location.state or location.postal_code or location.country -%}
<br>
{%- endif -%}
{%- if location.city -%}
{{ location.city | outlook_safe | raw }}
{%- endif -%}
{%- if location.state -%}
{%- if location.city -%}
,
{%- endif -%}
{{ location.state | outlook_safe | raw }}
{%- endif -%}
{%- if location.postal_code -%}
{%- if location.city or location.state -%}
{%- endif -%}
{{ location.postal_code | outlook_safe | raw }}
{%- endif -%}
{%- if location.country -%}
{%- if location.city or location.state or location.postal_code -%}
<font size="1" color="#B9B9B9">|</font>
{%- endif -%}
{{ location.country | outlook_safe | raw }}
{%- endif -%}
{%- if location.recently_moved -%}
<br>
<font color="#FF0000"><b>We've Moved! Please note our new address.</b></font>
{%- endif -%}
</p>
</td>
</tr>
<!--END LOCATION ROW-->