I'm looking for a way to use email templates without Bootstrap and NodeJS

  1. I’m looking for a way to use email templates without Bootstrap and NodeJS

  2. i have this problem
    In the template, I want the data record [salutation] with the values 1 or 2 (integer) to be replaced with the respective salutation.
    Since it’s a number, I don’t get the option to replace it.

If I change the type to text, I get this option, but it automatically changes back to number and I don’t get any output.

How can I solve this?

Many thanks for your help!

You can do it like:

{{projektdaten.data.showProjektDetails.anrede == 1 ? 'Frau' : 'Herr'}}

Thanks that works!

Do you have any instructions on how to send templates via email without Bootstrap und NodeJS?