Hello,
I was just wondering if it is possible to have a different email (different style, logo, colors, etc) for each client that uses passwordless (email) authentication.
Thank you in advance.
Hello,
I was just wondering if it is possible to have a different email (different style, logo, colors, etc) for each client that uses passwordless (email) authentication.
Thank you in advance.
The Passwordless email templates contain the {{ application.name }}
attribute which can be used to trigger different templates using Liquid syntax. E.g.
{% if application.name == 'application1' %}
<p>This is application 1</p>
{% else %}
<p>Not application 1</p>
{% endif %}