derhias
Hi,
The syntax for conditional field in v7 is as follows
.
{if:field=value}Text{/if} => this will only work for default AcyMailing user fields such as name, email, language... so you could use something like {if:email=myemail@example.com}Some text for a test{/if}
If you want to test a custom field, then you have to write it differently:
field should be var.field and the value should be the dtext for the corresponding field.
In your case it should be:
{if:var.{subscriber:anrede}=Herr}Herr{/if}{if:var.{subscriber:anrede}=Frau}Frau{/if}
Just add it to the text in your mail and you're good to go.