Liquid Treepl equlivent tags in auto-responder emails

We used the following 2 tags to display this info when we used BC autoresponder emails. It worked fined to show these results in the email response. In treepl this does not work and only displays the actual tags

Dear {tag_recipientname}, {tag_webformresults}

What would the replacement tags be to show this info in the email autoresponder. Can’t seem to find in the documentation.

That info is on the {{ FORMSUBMISSIONDATA }} OBJECT docs page

{{ this.formSubmissionData.fields.system.firstname.value }}
{{ this.formSubmissionData.fields.system.lastname.value }}

    {% if this.formSubmissionData.error == 0 %} <!-- we check if an error has occurred and if not render the below success message -->
        <h2>Thank you!</h2>
        <p>Your request has successfully sent. We will get back to you soon.</p>
        <p>Summary:</p>
        <dl>
        {% for f in this.formSubmissionData.fields.all -%} <!-- here we loop through all the form fields and output the key/value pairs for each fields "name" and "value" -->
            <dd>{{f.name}}:</dd>
            <dt>{{f.value}}</dt>
        {% endfor -%}
        </dl>
    {% else -%} <!-- if an error has occurred we instead render the below error message -->
        <h2>Error!</h2>
        <p>Sorry, the form submission was not sent due to an error. Please try again.<br>
        <br><strong>Error Code {{this.formSubmissionData.error}}:</strong><br> <!-- renders the error code -->
        {% for err in this.formSubmissionData.errormessages %} <!-- here we loop through all error values and output them -->
            - {{err}}<br>
        {% endfor %}
    {% endif %}

Hope that helps :+1:
1 Like

Thank you @Alex_B_Centrifuge will take a look!