Email Template different per Application

Let’s say I have two different applications with varying HTML. I can do basic code to conditionally show…

 {% if application.name == "APP 1" %}
<HTML MARKUP>
{% endif %}

 {% if application.name == "APP 2" %}
<HTML MARKUP OF APP 2>
{% endif %}

That just feels weird and a hacky work-around. Is there a way to conditionally include templates?

Hey there!

Unfortunately right now I think that’s the only way to achieve that but you can always leave us some feedback in our Feedback category:

Thanks. Will definitely leave feedback.

1 Like