Hey all,
We’re working on a programmable module for an email.
I can preview and all the data pulls in correctly. The test emails send and they look right. However, I cannot publish as it says: token doesn’t exist.
<!--
templateType: email
isAvailableForNewContent: true
-->
{% set owner = crm_associations(contact.hs_object_id, ‘USER_DEFINED’, 426,‘limit=1&agent_type=DA’, ‘full_name, mobile, hs_object_id’ ) %}
{% for owner in owner.results %}
{% set office = crm_associations(owner.hs_object_id, ‘USER_DEFINED’, 431,‘limit=1’, ‘associated_available_deals, hs_object_id’ ) %}
{% for office in office.results %}
{% set market = crm_associations(office.hs_object_id, ‘USER_DEFINED’, 420,‘limit=1’, ‘associated_available_deals, market_name, hs_object_id’ ) %}
{% for market in market.results %}
<p style=“line-height: 150%;”>
Are you ready to make Real Estate Investing a reality? Give me a call or text at <a href=“tel:{{ owner.mobile }}” style=“color:#c0985c;”>{{ owner.mobile }}</a> and we’ll make it happen!
</p>
{% endfor %}
{% endfor %}
{% endfor %}
