Twig Templates
Forms support

High level of personalization for your e-mails, landing pages and text messages using Twig syntax.     

Forms Support

Available only if email is sent from 

  • send email to contact form action 
  • send email campaign action with campaign form source 

It allows the use of two form tokens:

  • {{ formresult }} - to process the last form submission for contact
  • {{ formresults }} - an array of all results to process contact submissions

Last Form Result

Result of the last submitted form for contact:

{{ result.firstname }} 
{{ result.lastname}} 
{{ result.email}}

List of Submitted Form Results

The results of the submitted forms from contact:

<ul>
{% for result in formresults %}
    <li>{{ result.firstname }} {{ result.lastname}}</li>
{% endfor %}
</ul>
Built on Unicorn Platform