Hello,
i have in my form a field for the salutation Mr and Mrs. Depending on what was chosen a different confirmation mail should be sent.
I have a bit of PHP and the Event Switcher tried but unfortunately still no success.
In the Email Template i have tried
Thanks for your help!
Thilo
i have in my form a field for the salutation Mr and Mrs. Depending on what was chosen a different confirmation mail should be sent.
I have a bit of PHP and the Event Switcher tried but unfortunately still no success.
In the Email Template i have tried
<?php
if({drp_salutation} =='Herr'){
echo "Sehr geehrter Herr";
}
else
{
echo "Sehr geehrte Frau";
}
?>
Thanks for your help!
Thilo