Hi, we want to send event properties that manipulates my styles. Of course injecting {{ event.blah }} into inline styles of HTML components would be fine, but we were wondering if it is possible to do something like this in the <style> block of the template, since it will drastically reduce the amount of duplication in the template.
...
<style>
.style-class {
color: {{ event.pretty_colour }}
}
</style>
...
<a class="style-class" />
As it stands, if we apply the above, the .style-class will not even appear in the final email, and no effect will be applied.
Thanks in advance!